Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pod_cpu_usage_seconds_total (0.32 sec)

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

    				# TYPE resource_scrape_error gauge
    				resource_scrape_error 0
    				# HELP pod_cpu_usage_seconds_total [STABLE] Cumulative cpu time consumed by the pod in core-seconds
    				# TYPE pod_cpu_usage_seconds_total counter
    				pod_cpu_usage_seconds_total{namespace="namespace_a",pod="pod_a"} 10 1624396278302
    				# HELP pod_memory_working_set_bytes [STABLE] Current working set of the pod in bytes
    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 amount of the container swap usage in bytes. Reported only on non-windows systems",
    		[]string{"container", "pod", "namespace"},
    		nil,
    		metrics.ALPHA,
    		"")
    
    	podCPUUsageDesc = metrics.NewDesc("pod_cpu_usage_seconds_total",
    		"Cumulative cpu time consumed by the pod in core-seconds",
    		[]string{"pod", "namespace"},
    		nil,
    		metrics.STABLE,
    		"")
    
    	podMemoryUsageDesc = metrics.NewDesc("pod_memory_working_set_bytes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 07:13:37 UTC 2023
    - 9.2K bytes
    - Viewed (2)
  3. CHANGELOG/CHANGELOG-1.29.md

      - `container_cpu_usage_seconds_total`
      - `container_memory_working_set_bytes`
      - `container_start_time_seconds`
      - `node_cpu_usage_seconds_total`
      - `node_memory_working_set_bytes`
      - `pod_cpu_usage_seconds_total`
      - `pod_memory_working_set_bytes`
      - `resource_scrape_error`
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.18.md

    - In the kubelet resource metrics endpoint at /metrics/resource, change the names of the following metrics:
      - node_cpu_usage_seconds --> node_cpu_usage_seconds_total
      - container_cpu_usage_seconds --> container_cpu_usage_seconds_total
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.17.md

    - Following metrics from kubelet are now marked as with the ALPHA stability level:
      `node_cpu_usage_seconds_total`
      `node_memory_working_set_bytes`
      `container_cpu_usage_seconds_total`
      `container_memory_working_set_bytes`
      `scrape_error`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.19.md

    - In the kubelet resource metrics endpoint at /metrics/resource, change the names of the following metrics:
      - node_cpu_usage_seconds --> node_cpu_usage_seconds_total
      - container_cpu_usage_seconds --> container_cpu_usage_seconds_total
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top