This commit is contained in:
2025-12-10 12:45:44 +01:00
parent 136ace1847
commit 00cf9c6530

View File

@@ -2,8 +2,9 @@ apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:
name: argocd-metrics-server-configmap name: argocd-metrics-server-configmap
namespace: argocd
data: data:
# Metrics for Deployments # Define metrics for Deployments
extension.metrics.deployments: | extension.metrics.deployments: |
- name: "CPU Usage" - name: "CPU Usage"
description: "CPU usage for the deployment" description: "CPU usage for the deployment"
@@ -26,7 +27,7 @@ data:
yAxisLabel: "Bytes/sec" yAxisLabel: "Bytes/sec"
query: 'sum(rate(container_network_receive_bytes_total{namespace="{{.metadata.namespace}}", pod=~"{{.metadata.name}}-.*"}[5m])) by (pod)' query: 'sum(rate(container_network_receive_bytes_total{namespace="{{.metadata.namespace}}", pod=~"{{.metadata.name}}-.*"}[5m])) by (pod)'
# Metrics for Pods # Define metrics for Pods
extension.metrics.pods: | extension.metrics.pods: |
- name: "CPU Usage" - name: "CPU Usage"
description: "CPU usage for the pod" description: "CPU usage for the pod"
@@ -49,5 +50,5 @@ data:
yAxisLabel: "Restarts" yAxisLabel: "Restarts"
query: 'kube_pod_container_status_restarts_total{namespace="{{.metadata.namespace}}", pod="{{.metadata.name}}"}' query: 'kube_pod_container_status_restarts_total{namespace="{{.metadata.namespace}}", pod="{{.metadata.name}}"}'
# Prometheus connection # Prometheus connection settings
prometheus.url: "http://prometheus-kube-prometheus-prometheus.monitoring.svc:9090" prometheus.url: "http://prometheus-kube-prometheus-prometheus.monitoring.svc:9090"