123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- /*
- Copyright 2019 The Kubernetes 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
- 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 stats
- import (
- "fmt"
- "strings"
- "testing"
- "time"
- "github.com/stretchr/testify/mock"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/component-base/metrics"
- "k8s.io/component-base/metrics/testutil"
- statsapi "k8s.io/kubernetes/pkg/kubelet/apis/stats/v1alpha1"
- summary "k8s.io/kubernetes/pkg/kubelet/apis/stats/v1alpha1"
- )
- // TODO(RainbowMango): The Desc variables and value functions should be shared with source code.
- // It can not be shared now because there is a import cycle.
- // Consider deprecate endpoint `/resource/v1alpha1` as stability framework could offer guarantee now.
- var (
- nodeCPUUsageDesc = metrics.NewDesc("node_cpu_usage_seconds_total",
- "Cumulative cpu time consumed by the node in core-seconds",
- nil,
- nil,
- metrics.ALPHA,
- "")
- nodeMemoryUsageDesc = metrics.NewDesc("node_memory_working_set_bytes",
- "Current working set of the node in bytes",
- nil,
- nil,
- metrics.ALPHA,
- "")
- containerCPUUsageDesc = metrics.NewDesc("container_cpu_usage_seconds_total",
- "Cumulative cpu time consumed by the container in core-seconds",
- []string{"container", "pod", "namespace"},
- nil,
- metrics.ALPHA,
- "")
- containerMemoryUsageDesc = metrics.NewDesc("container_memory_working_set_bytes",
- "Current working set of the container in bytes",
- []string{"container", "pod", "namespace"},
- nil,
- metrics.ALPHA,
- "")
- )
- // getNodeCPUMetrics returns CPU utilization of a node.
- func getNodeCPUMetrics(s summary.NodeStats) (*float64, time.Time) {
- if s.CPU == nil {
- return nil, time.Time{}
- }
- v := float64(*s.CPU.UsageCoreNanoSeconds) / float64(time.Second)
- return &v, s.CPU.Time.Time
- }
- // getNodeMemoryMetrics returns memory utilization of a node.
- func getNodeMemoryMetrics(s summary.NodeStats) (*float64, time.Time) {
- if s.Memory == nil {
- return nil, time.Time{}
- }
- v := float64(*s.Memory.WorkingSetBytes)
- return &v, s.Memory.Time.Time
- }
- // getContainerCPUMetrics returns CPU utilization of a container.
- func getContainerCPUMetrics(s summary.ContainerStats) (*float64, time.Time) {
- if s.CPU == nil {
- return nil, time.Time{}
- }
- v := float64(*s.CPU.UsageCoreNanoSeconds) / float64(time.Second)
- return &v, s.CPU.Time.Time
- }
- // getContainerMemoryMetrics returns memory utilization of a container.
- func getContainerMemoryMetrics(s summary.ContainerStats) (*float64, time.Time) {
- if s.Memory == nil {
- return nil, time.Time{}
- }
- v := float64(*s.Memory.WorkingSetBytes)
- return &v, s.Memory.Time.Time
- }
- // Config is the v1alpha1 resource metrics definition
- func Config() ResourceMetricsConfig {
- return ResourceMetricsConfig{
- NodeMetrics: []NodeResourceMetric{
- {
- Desc: nodeCPUUsageDesc,
- ValueFn: getNodeCPUMetrics,
- },
- {
- Desc: nodeMemoryUsageDesc,
- ValueFn: getNodeMemoryMetrics,
- },
- },
- ContainerMetrics: []ContainerResourceMetric{
- {
- Desc: containerCPUUsageDesc,
- ValueFn: getContainerCPUMetrics,
- },
- {
- Desc: containerMemoryUsageDesc,
- ValueFn: getContainerMemoryMetrics,
- },
- },
- }
- }
- type mockSummaryProvider struct {
- mock.Mock
- }
- func (m *mockSummaryProvider) Get(updateStats bool) (*statsapi.Summary, error) {
- args := m.Called(updateStats)
- return args.Get(0).(*statsapi.Summary), args.Error(1)
- }
- func (m *mockSummaryProvider) GetCPUAndMemoryStats() (*statsapi.Summary, error) {
- args := m.Called()
- return args.Get(0).(*statsapi.Summary), args.Error(1)
- }
- func TestCollectResourceMetrics(t *testing.T) {
- testTime := metav1.NewTime(time.Unix(2, 0)) // a static timestamp: 2000
- tests := []struct {
- name string
- config ResourceMetricsConfig
- summary *statsapi.Summary
- summaryErr error
- expectedMetricsNames []string
- expectedMetrics string
- }{
- {
- name: "error getting summary",
- config: Config(),
- summary: nil,
- summaryErr: fmt.Errorf("failed to get summary"),
- expectedMetricsNames: []string{"scrape_error"},
- expectedMetrics: `
- # HELP scrape_error [ALPHA] 1 if there was an error while getting container metrics, 0 otherwise
- # TYPE scrape_error gauge
- scrape_error 1
- `,
- },
- {
- name: "arbitrary node metrics",
- config: Config(),
- summary: &statsapi.Summary{
- Node: statsapi.NodeStats{
- CPU: &statsapi.CPUStats{
- Time: testTime,
- UsageCoreNanoSeconds: uint64Ptr(10000000000),
- },
- Memory: &statsapi.MemoryStats{
- Time: testTime,
- WorkingSetBytes: uint64Ptr(1000),
- },
- },
- },
- summaryErr: nil,
- expectedMetricsNames: []string{
- "node_cpu_usage_seconds_total",
- "node_memory_working_set_bytes",
- "scrape_error",
- },
- expectedMetrics: `
- # HELP node_cpu_usage_seconds_total [ALPHA] Cumulative cpu time consumed by the node in core-seconds
- # TYPE node_cpu_usage_seconds_total gauge
- node_cpu_usage_seconds_total 10 2000
- # HELP node_memory_working_set_bytes [ALPHA] Current working set of the node in bytes
- # TYPE node_memory_working_set_bytes gauge
- node_memory_working_set_bytes 1000 2000
- # HELP scrape_error [ALPHA] 1 if there was an error while getting container metrics, 0 otherwise
- # TYPE scrape_error gauge
- scrape_error 0
- `,
- },
- {
- name: "arbitrary container metrics for different container, pods and namespaces",
- config: Config(),
- summary: &statsapi.Summary{
- Pods: []statsapi.PodStats{
- {
- PodRef: statsapi.PodReference{
- Name: "pod_a",
- Namespace: "namespace_a",
- },
- Containers: []statsapi.ContainerStats{
- {
- Name: "container_a",
- CPU: &statsapi.CPUStats{
- Time: testTime,
- UsageCoreNanoSeconds: uint64Ptr(10000000000),
- },
- Memory: &statsapi.MemoryStats{
- Time: testTime,
- WorkingSetBytes: uint64Ptr(1000),
- },
- },
- {
- Name: "container_b",
- CPU: &statsapi.CPUStats{
- Time: testTime,
- UsageCoreNanoSeconds: uint64Ptr(10000000000),
- },
- Memory: &statsapi.MemoryStats{
- Time: testTime,
- WorkingSetBytes: uint64Ptr(1000),
- },
- },
- },
- },
- {
- PodRef: statsapi.PodReference{
- Name: "pod_b",
- Namespace: "namespace_b",
- },
- Containers: []statsapi.ContainerStats{
- {
- Name: "container_a",
- CPU: &statsapi.CPUStats{
- Time: testTime,
- UsageCoreNanoSeconds: uint64Ptr(10000000000),
- },
- Memory: &statsapi.MemoryStats{
- Time: testTime,
- WorkingSetBytes: uint64Ptr(1000),
- },
- },
- },
- },
- },
- },
- summaryErr: nil,
- expectedMetricsNames: []string{
- "container_cpu_usage_seconds_total",
- "container_memory_working_set_bytes",
- "scrape_error",
- },
- expectedMetrics: `
- # HELP scrape_error [ALPHA] 1 if there was an error while getting container metrics, 0 otherwise
- # TYPE scrape_error gauge
- scrape_error 0
- # HELP container_cpu_usage_seconds_total [ALPHA] Cumulative cpu time consumed by the container in core-seconds
- # TYPE container_cpu_usage_seconds_total gauge
- container_cpu_usage_seconds_total{container="container_a",namespace="namespace_a",pod="pod_a"} 10 2000
- container_cpu_usage_seconds_total{container="container_a",namespace="namespace_b",pod="pod_b"} 10 2000
- container_cpu_usage_seconds_total{container="container_b",namespace="namespace_a",pod="pod_a"} 10 2000
- # HELP container_memory_working_set_bytes [ALPHA] Current working set of the container in bytes
- # TYPE container_memory_working_set_bytes gauge
- container_memory_working_set_bytes{container="container_a",namespace="namespace_a",pod="pod_a"} 1000 2000
- container_memory_working_set_bytes{container="container_a",namespace="namespace_b",pod="pod_b"} 1000 2000
- container_memory_working_set_bytes{container="container_b",namespace="namespace_a",pod="pod_a"} 1000 2000
- `,
- },
- }
- for _, test := range tests {
- tc := test
- t.Run(tc.name, func(t *testing.T) {
- provider := &mockSummaryProvider{}
- provider.On("GetCPUAndMemoryStats").Return(tc.summary, tc.summaryErr)
- collector := NewPrometheusResourceMetricCollector(provider, tc.config)
- if err := testutil.CustomCollectAndCompare(collector, strings.NewReader(tc.expectedMetrics), tc.expectedMetricsNames...); err != nil {
- t.Fatal(err)
- }
- })
- }
- }
- func uint64Ptr(u uint64) *uint64 {
- return &u
- }
|