cpuload.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Copyright 2015 Google Inc. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package cpuload
  15. import (
  16. "fmt"
  17. info "github.com/google/cadvisor/info/v1"
  18. "github.com/google/cadvisor/utils/cpuload/netlink"
  19. "k8s.io/klog"
  20. )
  21. type CpuLoadReader interface {
  22. // Start the reader.
  23. Start() error
  24. // Stop the reader and clean up internal state.
  25. Stop()
  26. // Retrieve Cpu load for a given group.
  27. // name is the full hierarchical name of the container.
  28. // Path is an absolute filesystem path for a container under CPU cgroup hierarchy.
  29. GetCpuLoad(name string, path string) (info.LoadStats, error)
  30. }
  31. func New() (CpuLoadReader, error) {
  32. reader, err := netlink.New()
  33. if err != nil {
  34. return nil, fmt.Errorf("failed to create a netlink based cpuload reader: %v", err)
  35. }
  36. klog.V(4).Info("Using a netlink-based load reader")
  37. return reader, nil
  38. }