Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for cadvisorfs (0.15 sec)

  1. pkg/kubelet/oom/oom_watcher_linux.go

    	"k8s.io/klog/v2"
    
    	"github.com/google/cadvisor/utils/oomparser"
    )
    
    type streamer interface {
    	StreamOoms(chan<- *oomparser.OomInstance)
    }
    
    var _ streamer = &oomparser.OomParser{}
    
    type realWatcher struct {
    	recorder    record.EventRecorder
    	oomStreamer streamer
    }
    
    var _ Watcher = &realWatcher{}
    
    // NewWatcher creates and initializes a OOMWatcher backed by Cadvisor as
    // the oom streamer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 23:17:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/numa_info.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package topologymanager
    
    import (
    	"fmt"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager/bitmask"
    )
    
    type NUMADistances map[int][]uint64
    
    type NUMAInfo struct {
    	Nodes         []int
    	NUMADistances NUMADistances
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. pkg/kubelet/winstats/winstats_test.go

    limitations under the License.
    */
    
    package winstats
    
    import (
    	"os"
    	"testing"
    	"time"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	"github.com/stretchr/testify/assert"
    )
    
    var timeStamp = time.Now()
    
    type fakeWinNodeStatsClient struct{}
    
    func (f fakeWinNodeStatsClient) startMonitoring() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager_linux.go

    			)
    		}
    	}
    
    	var internalCapacity = v1.ResourceList{}
    	// It is safe to invoke `MachineInfo` on cAdvisor before logically initializing cAdvisor here because
    	// machine info is computed and cached once as part of cAdvisor object creation.
    	// But `RootFsInfo` and `ImagesFsInfo` are not available at this moment so they will be called later during manager starts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/summary_sys_containers.go

    		}
    		// System containers don't have a filesystem associated with them.
    		s.Logs, s.Rootfs = nil, nil
    		s.Name = sys
    
    		// if we know the start time of a system container, use that instead of the start time provided by cAdvisor
    		if !cont.startTime.IsZero() {
    			s.StartTime = cont.startTime
    		}
    		stats = append(stats, *s)
    	}
    
    	return stats
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. hack/unwanted-dependencies.json

          ],
          "github.com/gogo/googleapis": [
            "github.com/google/cadvisor"
          ],
          "github.com/gogo/protobuf": [
            "github.com/Microsoft/hcsshim",
            "github.com/containerd/cgroups",
            "github.com/containerd/ttrpc",
            "github.com/containerd/typeurl",
            "github.com/google/cadvisor",
            "github.com/grpc-ecosystem/go-grpc-middleware",
            "go.etcd.io/etcd/api/v3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/host_stats_provider_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package stats
    
    import (
    	"reflect"
    	"testing"
    
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    
    	kubecontainertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    
    	"k8s.io/apimachinery/pkg/types"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 10 11:26:59 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_others.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package stats
    
    import (
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    // listContainerNetworkStats returns the network stats of all the running containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 11:09:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/kubemark/hollow_kubelet.go

    	kubeletapp "k8s.io/kubernetes/cmd/kubelet/app"
    	"k8s.io/kubernetes/cmd/kubelet/app/options"
    	"k8s.io/kubernetes/pkg/kubelet"
    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	probetest "k8s.io/kubernetes/pkg/kubelet/prober/testing"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. LICENSES/vendor/github.com/google/cadvisor/LICENSE

    = vendor/github.com/google/cadvisor licensed under: =
    
       Copyright 2014 The cAdvisor Authors
    
       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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 10.6K bytes
    - Viewed (0)
Back to top