metrics:
prometheus:
host: 127.0.0.1
Heimdall
As of today, heimdall only supports Prometheus as metrics backend, which is also enabled by default by exposing available metrics on 0.0.0.0:10250/metrics
endpoint.
Configuration for Prometheus can be adjusted in the prometheus
property, which lives in the metrics
property of heimdall’s configuration and supports following properties.
host
: string (optional)
By making use of this property, you can specify the TCP/IP address on which heimdall should listen for connections from client applications. The entry 0.0.0.0
allows listening for all IPv4 addresses. 0.0.0.0
is also the default setting.
metrics:
prometheus:
host: 127.0.0.1
port
: integer (optional)
By making use of this property, you can specify the TCP port the heimdall should listen on. Defaults to 10250
.
9999
for metrics requests.metrics:
prometheus:
port: 9999
metrics_path
: string (optional)
By making use of this property, you can specify the path under which prometheus metrics information is made available. Defaults to /metrics
.
/prometheus
path.metrics:
prometheus:
metrics_path: /prometheus
Last updated on Dec 8, 2022