Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for container_memory_working_set_bytes (0.65 sec)

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

    				# HELP container_memory_working_set_bytes [STABLE] Current working set of the container in bytes
    				# TYPE container_memory_working_set_bytes gauge
    				container_memory_working_set_bytes{container="container_a",namespace="namespace_a",pod="pod_a"} 1000 1624396278302
    				container_memory_working_set_bytes{container="container_a",namespace="namespace_b",pod="pod_b"} 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. 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)
  3. 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)
  4. manifests/addons/dashboards/istio-performance-dashboard.json

          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "sum(container_memory_working_set_bytes{pod=~\"istio-ingressgateway-.*\"}) / count(container_memory_working_set_bytes{pod=~\"istio-ingressgateway-.*\",container!=\"POD\"})",
              "format": "time_series",
              "intervalFactor": 1,
              "legendFormat": "per istio-ingressgateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/dashboard_test.go

    			"galley_validation_failed",
    			// cAdvisor does not expose this metrics, and we don't have kubelet in kind
    			"container_fs_usage_bytes",
    			// flakes: https://github.com/istio/istio/issues/29871
    			"container_memory_working_set_bytes",
    			"container_cpu_usage_seconds_total",
    		},
    		// Pilot is installed only on Primary cluster, hence validate for primary clusters only.
    		true,
    	},
    	{
    		"istio-services-grafana-dashboards",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum by (pod) (\n  container_memory_working_set_bytes{container=\"istio-proxy\", pod=~\"ztunnel-.*\"}\n)",
                   "legendFormat": "Container ({{pod}})"
                }
             ],
             "title": "Memory Usage",
             "type": "timeseries"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. 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)
  8. manifests/addons/dashboards/istio-extension-dashboard.json

          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "sum(container_memory_working_set_bytes{container=\"istio-proxy\"})",
              "format": "time_series",
              "hide": false,
              "intervalFactor": 2,
              "legendFormat": "Total (k8s)",
              "refId": "A",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot-dashboard.gen.json

                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum by (pod) (\n  container_memory_working_set_bytes{container=\"discovery\", pod=~\"istiod-.*\"}\n)",
                   "legendFormat": "Container ({{pod}})"
                },
                {
                   "datasource": {
                      "type": "prometheus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. samples/addons/grafana.yaml

    asource":{"type":"prometheus","uid":"${datasource}"},"expr":"sum(container_memory_working_set_bytes{pod=~\"istio-ingressgateway-.*\"}) / count(container_memory_working_set_bytes{pod=~\"istio-ingressgateway-.*\",container!=\"POD\"})","format":"time_series","intervalFactor":1,"legendFormat":"per istio-ingressgateway","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"sum(container_memory_working_set_bytes{namespace!=\"istio-system\",container=\"istio-proxy\"}) / count(c...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top