Thursday, March 28, 2024
HomeDevOpsHow to configure grafana with Prometheus

How to configure grafana with Prometheus

The combination of Prometheus and Grafana is becoming a more and more common monitoring stack used by DevOps teams for storing and visualizing time series data. Prometheus acts as the storage backend and Grafana as the interface for analysis and visualization.

Prometheus collects metrics from monitored targets by scraping metrics from HTTP endpoints on these targets. But what about monitoring Prometheus itself?

Like any server running processes on a host machine, there are specific metrics that need to be monitored such as used memory, CPU and storage as well as general ones reporting on the status of the service. Conveniently, Prometheus exposes a wide variety of metrics that can be easily monitored. By adding Grafana as a visualization layer, we can easily set up a monitoring stack for our monitoring stack.

Installing Prometheus and Grafana

Refer this URL for setup a Prometheus Environment. Monitor Docker Host Environment using Prometheus

Defining the Prometheus Datasource

Let’s define the Prometheus as the data source in grafana dashboard. Choose “Creating your first datasource.”

The configuration for adding Prometheus in Grafana is as follows:

grafana data source

Once added, save and add the new data source.

What to Monitor?

Now that we have Prometheus and Grafana set up, we can begin to set up monitoring.

Prometheus ships a number of useful metrics that can be monitored. For example, since Prometheus stores all chunks and series in memory, we can build a panel based on the prometheus_local_storage_memory_chunks and prometheus_local_storage_memory_series metrics.

graph

Based on your RAM, you will want to monitor these panels for any specific thresholds passed. You can fine-tune the amount of RAM using the storage.local.memory-chunks configuration directive, while Prometheus recommends that you have at least three times more RAM available than needed by the memory chunks alone.

To get an overview of how well Prometheus is performing, we can measure the ingestion rate for the samples using the prometheus_local_storage_ingested_samples_total metric. What you need to monitor is whether the rate displayed aligns with the amount of metrics you know you are ingesting.

integrated storage

Likewise, it can be useful to monitor the actual amount of time between target scrapes that you have configured for Prometheus using the prometheus_target_interval_length_seconds metric. This will help you to identify latency issues whenever a sudden rise in latency is something that you will want to explore.

storage with seconds

Another useful metric to query and visualize is the prometheus_local_storage_chunk_ops_total metric that reports the per-second rate of all storage chunk operations taking place in Prometheus.

storage chunks

Using the Prometheus Stats Dashboard

Grafana comes with a built-in official dashboard for Prometheus called “Prometheus Stats” that was developed together with the Prometheus team. After you set up Prometheus as the datasource, simply select the “Dashboards” tab and import the listed dashboard.

  • Uptime: The total amount of time since your Prometheus server was started
  • Local Storage Memory Series: The current number of series held in memory
  • Internal Storage Queue Length: Ideally, this queue length should be “empty” (0) or a low number
  • Sample Ingested: Displays the samples ingested by Prometheus
  • Target Scrapes: Displays the frequency that the target — Prometheus, in this case — is scraped

A Prometheus Benchmark Dashboard

While designed for benchmarking Prometheus servers, the Prometheus Benchmark dashboard can be used to get a sense of the additional metrics that should be monitored.

To install and use this dashboard, simply go to Dashboards → Import and paste the URL for the dashboard.

Prometheus benchmark

While this is probably overkill for the day-to-day monitoring of your instance, this advanced dashboard includes some useful panels that are not displayed in the Prometheus Stats dashboard.

For example, the Memory graph gives you an idea of the memory consumed by Prometheus (same goes for the CPU graph).

Prometheus benchmach test

The Indexing graph gives you a good picture of the indexing rates for your Prometheus instance.

You can separates various metrics which prometheus self-report itself, you can get it how you want. Prometheus exports a long list of metrics that can be seen by browsing to http://<serverIP>:9090/metrics. You can experiment with the various queries in the graph at http://<serverIP>:9090/graph.

RELATED ARTICLES
- Advertisment -

Most Popular

Recent Comments