Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for node_swap_usage_bytes (0.22 sec)

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

    				# TYPE node_memory_working_set_bytes gauge
    				node_memory_working_set_bytes 1000 1624396278302
    				# HELP node_swap_usage_bytes [ALPHA] Current swap usage of the node in bytes. Reported only on non-windows systems
    				# TYPE node_swap_usage_bytes gauge
    				node_swap_usage_bytes 500 1624396278302
    				# HELP scrape_error [ALPHA] 1 if there was an error while getting container metrics, 0 otherwise
    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

    		"")
    
    	nodeMemoryUsageDesc = metrics.NewDesc("node_memory_working_set_bytes",
    		"Current working set of the node in bytes",
    		nil,
    		nil,
    		metrics.STABLE,
    		"")
    
    	nodeSwapUsageDesc = metrics.NewDesc("node_swap_usage_bytes",
    		"Current swap usage of the node in bytes. Reported only on non-windows systems",
    		nil,
    		nil,
    		metrics.ALPHA,
    		"")
    
    	containerCPUUsageDesc = metrics.NewDesc("container_cpu_usage_seconds_total",
    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