Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pod_swap_usage_bytes (0.15 sec)

  1. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    				# TYPE pod_memory_working_set_bytes gauge
    				pod_memory_working_set_bytes{namespace="namespace_a",pod="pod_a"} 1000 1624396278302
    				# HELP pod_swap_usage_bytes [ALPHA] Current amount of the pod swap usage in bytes. Reported only on non-windows systems
    				# TYPE pod_swap_usage_bytes gauge
    				pod_swap_usage_bytes{namespace="namespace_a",pod="pod_a"} 5000 1624396278302
    			`,
    		},
    		{
    			name: "nil pod metrics",
    			summary: &statsapi.Summary{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  2. pkg/kubelet/metrics/collectors/resource_metrics.go

    		"Current working set of the pod in bytes",
    		[]string{"pod", "namespace"},
    		nil,
    		metrics.STABLE,
    		"")
    
    	podSwapUsageDesc = metrics.NewDesc("pod_swap_usage_bytes",
    		"Current amount of the pod swap usage in bytes. Reported only on non-windows systems",
    		[]string{"pod", "namespace"},
    		nil,
    		metrics.ALPHA,
    		"")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 07:13:37 UTC 2023
    - 9.2K bytes
    - Viewed (2)
Back to top