Prometheus
Prometheus
The Prometheus exporter in Zilla exposes configured metrics through the standard /metrics
endpoint, allowing Prometheus to collect and store time-series data. This enables real-time monitoring, visualization, and alerting based on the application's performance metrics.
exporters:
prometheus:
type: prometheus
options:
endpoints:
- scheme: http
port: 7190
path: /metrics
Configuration (* required)
options
options
object
Property | Type | Description |
---|---|---|
options.endpoints | object[] | Contains prometheus endpoints. |
options.endpoints[].scheme* | enum [ http ] | URL scheme to accept for endpoint. |
options.endpoints[].port* | integer | URL port to accept for endpoint. |
options.endpoints[].path | string | URL path to accept for endpoint. |
Examples
The prometheus
specific options.
options:
endpoints:
- scheme: http
port: 7190
path: /metrics