Files
storage/postgresql/helm-values/postgres-exporter.yaml
Mayne0213 a15cb1510f PERF(grafana): optimize cpu requests based on
- actual usage from grafa...
- external-secrets: 20m → 5m (actual: 1m)
- external-secrets-webhook: 10m → 2m (actual: 1m)
- external-secrets-cert: 10m → 2m (actual: 1m)
- cnpg: 100m → 5m (actual: 2m)
- haproxy-ingress: 100m → 15m (actual: 9-10m)
2026-01-04 23:47:13 +09:00

28 lines
674 B
YAML

# Prometheus Postgres Exporter Helm Values
# Chart: https://github.com/prometheus-community/helm-charts/tree/main/charts/prometheus-postgres-exporter
# Note: This exporter monitors postgresql-primary
fullnameOverride: postgres-exporter
config:
datasource:
host: postgresql-primary.postgresql.svc.cluster.local
port: "5432"
user: bluemayne
passwordSecret:
name: postgresql-password
key: password
database: postgres
sslmode: disable
serviceMonitor:
enabled: true
namespace: monitoring
additionalLabels:
release: prometheus
resources:
requests:
memory: 64Mi
cpu: 5m # Reduced from 50m based on actual usage (1-2m)