Admin UI logs
- Open Deployments.
- Open the target deployment.
- Go to Logs.
- Select a pod.
- Use Reconnect to restart the stream or Export to download the captured output as
<pod-name>-logs.txt.
Admin UI metrics
- Open the target deployment.
- Go to Metrics.
- Select a non-Sentinel pod.
- Use Reconnect to restart the live metrics stream.
Grafana link in the UI
The Open in Grafana button appears only whensettings.ui.grafana_url is configured.
- Open System Settings.
- Open the UI/settings section.
- Set the Grafana URL.
- Save settings.
- Return to deployment Metrics and select Open in Grafana.
var-namespace=<namespace>var-pod=<selected-pod>var-pod_scope=<selected-pod>
Helm observability resources
The chart has these optional observability toggles:
When
podMonitor.enabled=true, the chart creates:
- An Admin Server PodMonitor that scrapes
/metricson thehttpport. - A FalkorDB PodMonitor when the FalkorDB addon is enabled. It selects KubeBlocks-managed non-Sentinel pods and scrapes
/metricsonhttp-metricsandgraph-metrics.
PodMonitor and PrometheusRule require Prometheus Operator CRDs. GrafanaDashboard requires the Grafana Operator CRD.
Protecting the Admin Server metrics endpoint
/metrics is served on the same port as the API but outside the authenticated /api prefix, so by default anything that can reach the pod can read it. Set HTTP Basic credentials to close that:
<release>-falkordb-enterprise-admin-server-metrics, wires it into the Admin Server, and adds a matching basicAuth block to the Admin Server PodMonitor, so podMonitor.enabled=true keeps scraping without further changes. Any scraper you configure yourself must send the same credentials, or it will get 401.
To keep the credentials out of Helm values, create the Secret yourself with username and password keys and reference it:
Example values
name and json.