Use Prometheus with Aiven ========================= Discover Prometheus as a tool for monitoring your Aiven services. Check why use it and how it works. Learn how to enable and configure Prometheus on your project. About Prometheus ---------------- Prometheus is an open-source systems monitoring and alerting toolkit. It implements an in-memory and persistent storage model for metrics as well as a query language for accessing the metrics. The metrics delivery model of Prometheus is a pull model where the Prometheus server connects to HTTP servers running on the nodes being monitored and pulls the metrics from them. While this makes the service discovery more of a challenge than using the more common push approach, it does have the benefit of making the metrics available not just for Prometheus but for any application that can read the Prometheus format from the HTTP server running on Aiven nodes. Check Prometheus support for your service ----------------------------------------- Usually one Prometheus integration endpoint can be used for all services in the same project. To check if Prometheus is supported on your service, you need to verify if the project for this service has a Prometheus integration endpoint created. For this purpose, take the following steps: #. Log in to `Aiven Console `_, go to **Projects** in the top navigation bar, and select your project from the dropdown list. #. On the **Services** page, select **Integration endpoints** from the left sidebar. #. On the **Integration endpoints** page, select **Prometheus** from the list available integration endpoints, and check if there is any endpoint available under **Endpoint Name**. If there is a Prometheus endpoint available, your service supports Prometheus. If there's no Prometheus endpoint available, proceed to :ref:`Enable Prometheus on your Aiven project ` to set up Prometheus for your service (project). .. _enable-prometheus: Enable Prometheus ----------------- Aiven offers Prometheus endpoints for your services. To enable this feature, take the following steps: #. Log in to `Aiven Console `_, go to **Projects** in the top navigation bar, and select your project from the dropdown list. #. On the **Services** page, select **Integration endpoints** from the left sidebar. #. On the **Integration endpoints** page, select **Prometheus** from the list available integration endpoints, and select **Add new endpoint**. #. In the **Create new Prometheus endpoint** window, enter the details for the endpoint, and select **Create**. #. Select **Services** from the sidebar, and navigate to the service that you would like to monitor. #. On the **Overview** page of your service, go to the **Service integrations** section, and select **Manage integrations**. #. On the **Integrations** page, select **Prometheus**. #. In the **Prometheus integration** window, select the endpoint name you created from the dropdown list, and select **Enable**. .. note:: At the top of the **Integrations** page, you will see the Prometheus integration listed and status ``active``. #. From the **Integrations** page, go to the **Overview** page > the **Connection information** section > the **Prometheus** tab. #. Copy **Service URI**, and use it in your browser to access the Prometheus dashboard. .. topic:: Result The system initiates an HTTP server on all service nodes, granting access to the metrics. Aiven is exposing endpoints for your services. .. note:: There might be a slight delay of approximately one minute before the metrics become available. Accessing Prometheus in a VPC '''''''''''''''''''''''''''''' If you use a VPC in your project, to access Prometheus, you need to go to `Aiven Console `_ > your project > the service you want to monitor using Prometheus > the **Service settings** page > the **Cloud and network** section > the actions (**...**) menu > the **More network configurations**. In the **Network configuration** window, select **Add configuration options**, search for property ``public_access.prometheus``, enable it, and select **Save configuration**. Configure Prometheus -------------------- After enabling Prometheus on your project, add a scrape configuration to Prometheus for the servers you want to pull data from. The examples in this section show how to set up the scrape configuration for both single-node and multi-node services. Single-node services '''''''''''''''''''' For single-node services, configure the following in your ``scrape_config`` job entry in ``prometheus.yml``: * ``basic_auth`` details: Check your service's the **Overview** page > the **Connection information** section > the **Prometheus** tab). * ``PROMETHEUS_SERVICE_URI``: Check **Service URI** on your service's the **Overview** page > the **Connection information** section > the **Prometheus** tab). * ``ca_file``: Download the CA certificate from your service's the **Overview** page, and specify its location (the certificates are signed by the Aiven project CA). .. note:: You can download the CA certificate using the `Aiven command line client `_ and command ``avn project ca-get --target-filepath ca.pem``. .. topic:: Sample configuration .. code-block:: bash scrape_configs: - job_name: aivenmetrics scheme: https basic_auth: username: password: tls_config: ca_file: ca.pem static_configs: - targets: [": password: dns_sd_configs: - names: - type: A port: tls_config: insecure_skip_verify: true .. note:: For Aiven services with multiple nodes and a Replica URI, the primary DNS name does not include standby IP addresses. To track those, make sure to include the replica DNS names in the list. If you have ```` as ``public-example.aivencloud.com``, then you will need to add ``public-replica-example.aivencloud.com``. This applies to PostgreSQL®, MySQL®, and Redis®* services. View full list of metrics '''''''''''''''''''''''''' Aiven provides the Prometheus client via the Telegraf plugin so all the same metrics that are available via the Aiven for InfluxDB® metrics integration are also available via the Prometheus integration. You can preview the full list of metrics in :doc:`Prometheus system metrics `. .. note:: For some services the metrics provided by different hosts may vary depending on the host role. Most notably for Kafka® only one of the nodes provides metrics related to consumer group offsets. More integrations ----------------- Learn more about integrations with Aiven: * :doc:`Aiven integrations ` * :doc:`Datadog integration `