docs-v2/content/influxdb/v1.5/supported_protocols/prometheus.md

2.1 KiB

title menu
Prometheus endpoints support in InfluxDB
influxdb_1_5
name weight parent
Prometheus 40 Supported protocols

Prometheus remote read and write API support

{{% warn %}} Note: The Prometheus API Stability Guarantees states that remote read and remote write endpoints are features listed as experimental or subject to change, and thus considered unstable for 2.x". Any breaking changes will be included in the InfluxDB release notes. {{% /warn %}}

InfluxDB support for the Prometheus remote read and write API adds the following two HTTP endpoints to the InfluxDB httpd handler:

  • /api/v1/prom/read
  • /api/v1/prom/write

Additionally, there is a /metrics endpoint configured to produce default Go metrics in Prometheus metrics format.

Configuration

To enable the use of the Prometheus remote read and write API with InfluxDB, you need to add URL values to the following settings in the Prometheus configuration file:

Example of Prometheus endpoint configuration

# Remote write endpoint configuration (for Graphite, OpenTSDB, or InfluxDB).
remote_write:
* url: "http://localhost:8086/api/v1/prom/write?u=paul&p=foo&db=prometheus"
# Remote read endpoint configuration (for InfluxDB only at the moment).
remote_read:
* url: "http://localhost:8086/api/v1/prom/read?u=paul&p=foo&db=prometheus"

You can use query parameters to pass in an optional database user and password.

Note: Including the password in the config file is not ideal. See this Prometheus issue: "Support for environment variable substitution in configuration file".