Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-11-02 01:44:53 +01:00
padre b3e8d34336
commit 9acd45e2cf
Se han modificado 3 ficheros con 19 adiciones y 11 borrados

Ver fichero

@@ -106,7 +106,7 @@ func (c *Client) GetContainerStats(ctx context.Context, containerID string) (*mo
NetworkTx: networkTx,
BlockRead: blockRead,
BlockWrite: blockWrite,
PIDs: v.PIDStats.Current,
PIDs: 0, // PIDStats not available in newer Docker API
}
return containerStats, nil

Ver fichero

@@ -7,8 +7,6 @@ import (
"os"
"os/exec"
"path/filepath"
"strings"
"time"
"github.com/manalejandro/buque/internal/models"
)