Monitoring Alluxio
Default Monitoring with the Alluxio Operator
Accessing the Grafana Dashboard
1. Accessing via Port Forwarding (Recommended)
# Find the Grafana pod and forward port 3000
kubectl -n alx-ns port-forward $(kubectl -n alx-ns get pod -l app.kubernetes.io/component=grafana -o jsonpath="{.items[0].metadata.name}") 3000:30002. Accessing via Node Hostname
# Get the hostname of the node where Grafana is running
kubectl -n alx-ns get pod $(kubectl -n alx-ns get pod -l app.kubernetes.io/component=grafana --no-headers -o custom-columns=:metadata.name) -o jsonpath='{.spec.nodeName}'Understanding the Dashboard

Disabling the Default Grafana
Advanced: Querying Metrics Directly
Querying with Promtool
Querying Component Endpoints
Integrating with an Existing Monitoring System
Integrating with Prometheus
Standalone Prometheus
Prometheus in Kubernetes
Integrating with Grafana
Integrating with Datadog
Last updated