-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Paweł Szulik <pawel.szulik@intel.com>
- Loading branch information
Paweł Szulik
committed
Jan 11, 2022
1 parent
5cfac3f
commit ce6f39a
Showing
23 changed files
with
2,697 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
// Copyright 2021 Google Inc. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package pages | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
"net/url" | ||
"path" | ||
"time" | ||
|
||
"github.com/google/cadvisor/container/podman" | ||
info "github.com/google/cadvisor/info/v1" | ||
"github.com/google/cadvisor/manager" | ||
|
||
"k8s.io/klog/v2" | ||
) | ||
|
||
const PodmanPage = "/podman/" | ||
|
||
func servePodmanPage(m manager.Manager, w http.ResponseWriter, u *url.URL) { | ||
start := time.Now() | ||
|
||
containerName := u.Path[len(PodmanPage)-1:] | ||
rootDir := getRootDir(containerName) | ||
|
||
var data *pageData | ||
|
||
if containerName == "/" { | ||
// Scenario for all containers. | ||
reqParams := info.ContainerInfoRequest{ | ||
NumStats: 0, | ||
} | ||
conts, err := m.AllPodmanContainers(&reqParams) | ||
if err != nil { | ||
http.Error(w, fmt.Sprintf("failed to get container %q with error: %v", containerName, err), http.StatusNotFound) | ||
return | ||
} | ||
subcontainers := make([]link, 0, len(conts)) | ||
for _, cont := range conts { | ||
subcontainers = append(subcontainers, link{ | ||
Text: getContainerDisplayName(cont.ContainerReference), | ||
Link: path.Join(rootDir, PodmanPage, podman.ContainerNameToPodmanID(cont.ContainerReference.Name)), | ||
}) | ||
} | ||
|
||
// Get Podman status | ||
status, err := podman.Status() | ||
if err != nil { | ||
http.Error(w, fmt.Sprintf("failed to get docker info: %v", err), http.StatusInternalServerError) | ||
return | ||
} | ||
|
||
podmanStatus, driverStatus := toStatusKV(info.DockerStatus(status)) | ||
// Get Podman Images | ||
images, err := podman.Images() | ||
if err != nil { | ||
http.Error(w, fmt.Sprintf("failed to get podman images: %v", err), http.StatusInternalServerError) | ||
return | ||
} | ||
|
||
podmanContainerText := "Podman Containers" | ||
data = &pageData{ | ||
DisplayName: podmanContainerText, | ||
ParentContainers: []link{ | ||
{ | ||
Text: podmanContainerText, | ||
Link: path.Join(rootDir, PodmanPage), | ||
}}, | ||
Subcontainers: subcontainers, | ||
Root: rootDir, | ||
DockerStatus: podmanStatus, | ||
DockerDriverStatus: driverStatus, | ||
DockerImages: images, | ||
} | ||
} else { | ||
// Scenario for specific container. | ||
reqParams := info.ContainerInfoRequest{ | ||
NumStats: 60, | ||
} | ||
cont, err := m.PodmanContainer(containerName[1:], &reqParams) | ||
if err != nil { | ||
http.Error(w, fmt.Sprintf("failed to get container %v with error: %v", containerName, err), http.StatusNotFound) | ||
return | ||
} | ||
displayName := getContainerDisplayName(cont.ContainerReference) | ||
|
||
var parentContainers []link | ||
parentContainers = append(parentContainers, link{ | ||
Text: "Podman Containers", | ||
Link: path.Join(rootDir, PodmanPage), | ||
}) | ||
parentContainers = append(parentContainers, link{ | ||
Text: displayName, | ||
Link: path.Join(rootDir, PodmanPage, podman.ContainerNameToPodmanID(cont.Name)), | ||
}) | ||
|
||
machineInfo, err := m.GetMachineInfo() | ||
if err != nil { | ||
http.Error(w, fmt.Sprintf("failed to get machine info: %v", err), http.StatusInternalServerError) | ||
return | ||
} | ||
data = &pageData{ | ||
DisplayName: displayName, | ||
ContainerName: escapeContainerName(cont.Name), | ||
ParentContainers: parentContainers, | ||
Spec: cont.Spec, | ||
Stats: cont.Stats, | ||
MachineInfo: machineInfo, | ||
ResourcesAvailable: cont.Spec.HasCpu || cont.Spec.HasMemory || cont.Spec.HasNetwork, | ||
CpuAvailable: cont.Spec.HasCpu, | ||
MemoryAvailable: cont.Spec.HasMemory, | ||
NetworkAvailable: cont.Spec.HasNetwork, | ||
FsAvailable: cont.Spec.HasFilesystem, | ||
CustomMetricsAvailable: cont.Spec.HasCustomMetrics, | ||
Root: rootDir, | ||
} | ||
} | ||
|
||
err := pageTemplate.Execute(w, data) | ||
if err != nil { | ||
klog.Errorf("Failed to apply template: %s", err) | ||
} | ||
|
||
klog.V(5).Infof("Request took %s", time.Since(start)) | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
package docker | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/google/cadvisor/container" | ||
"github.com/google/cadvisor/container/common" | ||
"github.com/google/cadvisor/fs" | ||
info "github.com/google/cadvisor/info/v1" | ||
|
||
"k8s.io/klog/v2" | ||
) | ||
|
||
func GetFsStats( | ||
stats *info.ContainerStats, | ||
machineInfoFactory info.MachineInfoFactory, | ||
metrics container.MetricSet, | ||
storageDriver storageDriver, | ||
fsHandler common.FsHandler, | ||
globalFsInfo fs.FsInfo, | ||
poolName string, | ||
rootfsStorageDir string, | ||
zfsParent string, | ||
) error { | ||
mi, err := machineInfoFactory.GetMachineInfo() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if metrics.Has(container.DiskIOMetrics) { | ||
common.AssignDeviceNamesToDiskStats((*common.MachineInfoNamer)(mi), &stats.DiskIo) | ||
} | ||
|
||
if metrics.Has(container.DiskUsageMetrics) { | ||
var device string | ||
switch storageDriver { | ||
case devicemapperStorageDriver: | ||
device = poolName | ||
case aufsStorageDriver, overlayStorageDriver, overlay2StorageDriver, vfsStorageDriver: | ||
deviceInfo, err := globalFsInfo.GetDirFsDevice(rootfsStorageDir) | ||
if err != nil { | ||
return fmt.Errorf("unable to determine device info for dir: %v: %v", rootfsStorageDir, err) | ||
} | ||
device = deviceInfo.Device | ||
case zfsStorageDriver: | ||
device = zfsParent | ||
default: | ||
return nil | ||
} | ||
|
||
var ( | ||
limit uint64 | ||
fsType string | ||
) | ||
|
||
var fsInfo *info.FsInfo | ||
|
||
for _, fs := range mi.Filesystems { | ||
if fs.Device == device { | ||
limit = fs.Capacity | ||
fsType = fs.Type | ||
fsInfo = &fs | ||
break | ||
} | ||
} | ||
|
||
fsStat := info.FsStats{Device: device, Type: fsType, Limit: limit} | ||
usage := fsHandler.Usage() | ||
fsStat.BaseUsage = usage.BaseUsageBytes | ||
fsStat.Usage = usage.TotalUsageBytes | ||
fsStat.Inodes = usage.InodeUsage | ||
|
||
if fsInfo != nil { | ||
fileSystems, err := globalFsInfo.GetGlobalFsInfo() | ||
|
||
if err == nil { | ||
addDiskStats(fileSystems, fsInfo, &fsStat) | ||
} else { | ||
klog.Errorf("Unable to obtain diskstats for filesystem %s: %v", fsStat.Device, err) | ||
} | ||
} | ||
|
||
stats.Filesystem = append(stats.Filesystem, fsStat) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func addDiskStats(fileSystems []fs.Fs, fsInfo *info.FsInfo, fsStats *info.FsStats) { | ||
if fsInfo == nil { | ||
return | ||
} | ||
|
||
for _, fileSys := range fileSystems { | ||
if fsInfo.DeviceMajor == fileSys.DiskStats.Major && | ||
fsInfo.DeviceMinor == fileSys.DiskStats.Minor { | ||
fsStats.ReadsCompleted = fileSys.DiskStats.ReadsCompleted | ||
fsStats.ReadsMerged = fileSys.DiskStats.ReadsMerged | ||
fsStats.SectorsRead = fileSys.DiskStats.SectorsRead | ||
fsStats.ReadTime = fileSys.DiskStats.ReadTime | ||
fsStats.WritesCompleted = fileSys.DiskStats.WritesCompleted | ||
fsStats.WritesMerged = fileSys.DiskStats.WritesMerged | ||
fsStats.SectorsWritten = fileSys.DiskStats.SectorsWritten | ||
fsStats.WriteTime = fileSys.DiskStats.WriteTime | ||
fsStats.IoInProgress = fileSys.DiskStats.IoInProgress | ||
fsStats.IoTime = fileSys.DiskStats.IoTime | ||
fsStats.WeightedIoTime = fileSys.DiskStats.WeightedIoTime | ||
break | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.