Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for container_memory_working_set_bytes (0.66 sec)

  1. releasenotes/notes/update-grafana-memory-compute.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    
    releaseNotes:
    - |
      **Updated** the "Control Plane Dashboard" and the "Performance Dashboard" to use the `container_memory_working_set_bytes` metric
      to display memory. This metric only counts memory that *cannot be reclaimed* by the kernel even under memory pressure,
      and therefore more relevant for tracking. It is also consistent with `kubectl top`. The reported values are lower than
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 474 bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/queries.libsonnet

              |||
                sum by (pod) (
                  container_memory_working_set_bytes{%(containerLabels)s}
                )
              |||
            ),
    
          goMemoryUsage: [
            self.query(
              'Container ({{pod}})',
              |||
                sum by (pod) (
                  container_memory_working_set_bytes{%(containerLabels)s}
                )
              |||
            ),
            self.query(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/resource_metrics.go

    		"Cumulative cpu time consumed by the container in core-seconds",
    		[]string{"container", "pod", "namespace"},
    		nil,
    		metrics.STABLE,
    		"")
    
    	containerMemoryUsageDesc = metrics.NewDesc("container_memory_working_set_bytes",
    		"Current working set of the container in bytes",
    		[]string{"container", "pod", "namespace"},
    		nil,
    		metrics.STABLE,
    		"")
    
    	containerSwapUsageDesc = metrics.NewDesc("container_swap_usage_bytes",
    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