Grafana
How to configure a Grafana dashboard to visualize Memphis metrics
As Grafana is one of the most popular tools for centralized monitoring, Memphis provides a Prometheus exporter to enable Grafana users to monitor Memphis.
- K8S-based Memphis
- Memphis Prometheus exporter
- Configured Prometheus
- Grafana with prometheus configured as a data source
Validate that
Prometheus.yml
configfile contains "kubernetes-pods" job.
Its mandatory to scrape Memphis exporter metrics automatically....
honor_labels: true
job_name: kubernetes-pods
kubernetes_sd_configs:
- role: pod
relabel_configs:
- action: keep
regex: true
source_labels:
- __meta_kubernetes_pod_annotation_prometheus_io_scrape
...
If you haven't installed Memphis with the
exporter.enabled
yet helm install memphis memphis \
--create-namespace --namespace memphis --wait \
--set \
cluster.enabled="true",\
exporter.enabled="true"
If Memphis is already installed -
helm upgrade --set exporter.enabled=true memphis --namespace memphis --reuse-values
Import Memphis dashboard using Memphis dashboard ID: 18050
https://grafana.com/grafana/dashboards/18050-memphis/

Last modified 1mo ago