Metrics endpoints
The gateway metrics port defaults to 9090 and is configurable per FireboltInstance CR via
spec.gateway.metricsPort. Metadata pods do not currently expose a Prometheus metrics endpoint.
Firebolt Operator metrics mode
The Firebolt Operator metrics endpoint mode is controlled by two Helm values:
The Firebolt Operator PodMonitor template automatically adapts its port reference, scheme, bearer token, and TLS configuration based on
metrics.secure.
Scraping with Prometheus
The Firebolt Operator Helm chart ships optionalPodMonitor resources (one per component type) that can be enabled via values.yaml:
- Engines:
firebolt.io/engine(exists). Matches all engine pods regardless of engine name - Gateway:
firebolt.io/component=gateway - Firebolt Operator:
control-plane=controller-manager+ chart selector labels
allNamespaces is true, namespaceSelector.any: true is added so pods in any namespace are discovered. This does not apply to the Firebolt Operator PodMonitor because the Firebolt Operator always runs in the release namespace.
Per-instance monitoring
The chart-level PodMonitors apply uniform scrape configuration to all instances in scope. If you need per-instance control (different intervals, selective enablement, custom relabelings), disable the chart-level PodMonitors and deploy your own alongside each FireboltInstance or FireboltEngine CR. The label selectors to use are:- Engine pods:
firebolt.io/engine: <engine-name> - Gateway pods:
firebolt.io/instance: <instance-name>,firebolt.io/component: gateway
Operator metrics reference
FireboltEngine metrics
FireboltInstance metrics
JWT signing-key rotation metrics
Present on every FireboltInstance, and flat zero on one that does not use auth.Label glossary
Example PromQL queries
Engine not ready:Alerting on a stalled rotation
Every irreversible rotation step waits for the whole engine fleet to converge, and waits indefinitely — parking is the safe behaviour, so a stuck rotation raises no error and leavesAuthReady True. That makes elapsed time the signal worth alerting on. A normal rotation parks each gate only for as long as one engine roll takes, so a threshold well above your rollout time separates the two:
SigningKeyRotationStalled Warning Event when a rotation remains parked past its threshold.
Cardinality
Each FireboltEngine produces approximately 15 time series (6 phases + 2 conditions + 7 scalar gauges). Each FireboltInstance produces approximately 21 series (4 phases + 6 conditions + 1 info + 1 timestamp + 3 signing-key phases + 3 rotation steps + 3 scalar rotation gauges). For a cluster with 10 Instances and 50 Engines, expect roughly 960 time series from the Firebolt Operator. Thephase and step labels on the signing-key metrics are bounded enumerations written on every pass, including zeros, so they add a fixed handful of series per Instance and never grow with rotation count.
Metric label sets are cleaned up when CRs are deleted, so terminated engines do not leave stale series.