Update k8s metrics and docs
This commit is contained in:
parent
e099e7eb23
commit
6e2ce46760
2 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@
|
|||
- container_cpu_usage_seconds_total
|
||||
weight: 1
|
||||
queries:
|
||||
- query_range: 'sum(rate(container_cpu_usage_seconds_total{container_name!="POD",%{environment_filter}}[2m]) * 100) by (cpu)'
|
||||
- query_range: 'sum(rate(container_cpu_usage_seconds_total{container_name!="POD",%{environment_filter}}[2m])) by (cpu) * 100'
|
||||
label: CPU
|
||||
unit: "%"
|
||||
series:
|
||||
|
|
|
@ -8,7 +8,7 @@ GitLab has support for automatically detecting and monitoring Kubernetes metrics
|
|||
| Name | Query |
|
||||
| ---- | ----- |
|
||||
| Average Memory Usage (MB) | (sum(container_memory_usage_bytes{container_name!="POD",%{environment_filter}}) / count(container_memory_usage_bytes{container_name!="POD",%{environment_filter}})) /1024/1024 |
|
||||
| Average CPU Utilization (%) | sum(rate(container_cpu_usage_seconds_total{container_name!="POD",%{environment_filter}}[2m])) by (cpu) / count(container_cpu_usage_seconds_total{container_name!="POD",%{environment_filter}}) * 100 |
|
||||
| Average CPU Utilization (%) | sum(rate(container_cpu_usage_seconds_total{container_name!="POD",%{environment_filter}}[2m])) by (cpu) * 100 |
|
||||
|
||||
## Configuring Prometheus to monitor for Kubernetes node metrics
|
||||
|
||||
|
|
Loading…
Reference in a new issue