Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 8 additions & 17 deletions docs/configuration/metric-providers-google.rst
Original file line number Diff line number Diff line change
@@ -1,36 +1,27 @@
Google Managed Prometheus
=========================

.. warning::

Due to updates in the Google Managed Prometheus API, these instructions may be outdated.
Please contact our team for support on Slack (https://bit.ly/robusta-slack) or by email (support@robusta.dev).
We're working on updating the documentation.

Configure Robusta to use Google Cloud's Managed Service for Prometheus.
Configure Robusta to work with Google Cloud’s Managed Prometheus service.

Prerequisites
-------------

Before configuring Robusta, ensure you have:
Before setting up Robusta, make sure you have:

1. Google Managed Prometheus configured with:

- `Prometheus Frontend <https://cloud.google.com/stackdriver/docs/managed-prometheus/query#ui-prometheus>`_
- `Node Exporter <https://cloud.google.com/stackdriver/docs/managed-prometheus/exporters/node_exporter>`_
- `Kubelet/cAdvisor scraping <https://cloud.google.com/stackdriver/docs/managed-prometheus/exporters/kubelet-cadvisor>`_
- `Kube State Metrics <https://cloud.google.com/stackdriver/docs/managed-prometheus/exporters/kube_state_metrics>`_
* Google Managed Prometheus enabled
* A Prometheus Frontend endpoint accessible from your cluster
(If you don’t already have one, you can create it following the instructions `here <https://docs.cloud.google.com/stackdriver/docs/managed-prometheus/query-api-ui#ui-prometheus>`_).

Quick Start
-----------

Add the following to your ``generated_values.yaml``:
Add the following configuration to your ``generated_values.yaml`` file:

.. code-block:: yaml

globalConfig:
prometheus_url: "http://frontend.default.svc.cluster.local:9090"
alertmanager_url: "http://alertmanager.gmp-system.svc.cluster.local:9093"
# Set this to the URL of your Prometheus Frontend endpoint, it may change depending on the namespace you deployed it to.
prometheus_url: http://frontend.default.svc.cluster.local:9090
check_prometheus_flags: false # Required for Google Managed Prometheus

Then :ref:`update Robusta <Simple Upgrade>`.
Expand Down
Loading