Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for container_swap_usage_bytes (0.24 sec)

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

    				container_start_time_seconds{container="container_b",namespace="namespace_a",pod="pod_a"} 1.6243961583020916e+09
            		# HELP container_swap_usage_bytes [ALPHA] Current amount of the container swap usage in bytes. Reported only on non-windows systems
            		# TYPE container_swap_usage_bytes gauge
            		container_swap_usage_bytes{container="container_a",namespace="namespace_a",pod="pod_a"} 1000 1624396278302
    			`,
    		},
    		{
    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 container in bytes",
    		[]string{"container", "pod", "namespace"},
    		nil,
    		metrics.STABLE,
    		"")
    
    	containerSwapUsageDesc = metrics.NewDesc("container_swap_usage_bytes",
    		"Current amount of the container swap usage in bytes. Reported only on non-windows systems",
    		[]string{"container", "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 (1)
Back to top