mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
90303b5a03
* moved datasources folder * Update menu.yaml * updated Azuremonitor * Update azuremonitor.md * Update cloudmonitoring.md * Update cloudwatch.md * updated content * Update elasticsearch.md * Update graphite.md * Update elasticsearch.md * Update azuremonitor.md * Update cloudmonitoring.md * Update influxdb.md * Update jaeger.md * Update loki.md * Update mssql.md * Update mysql.md * Update opentsdb.md * Update postgres.md * Update prometheus.md * Update postgres.md * Update jaeger.md * Update mysql.md * Update mssql.md * added aliases * Update testdata.md * Update zipkin.md * link fixes * link fixing * moved files out of guides * Delete archive.md * updated links * updated aliases * updated aliases * link updates * Update _index.md * deleted archive.md * Update azuremonitor.md * Update azuremonitor.md
176 lines
18 KiB
Markdown
176 lines
18 KiB
Markdown
+++
|
|
title = "Prometheus"
|
|
description = "Guide for using Prometheus in Grafana"
|
|
keywords = ["grafana", "prometheus", "guide"]
|
|
type = "docs"
|
|
aliases = ["/docs/grafana/latest/features/datasources/prometheus"]
|
|
[menu.docs]
|
|
name = "Prometheus"
|
|
parent = "datasources"
|
|
weight = 1300
|
|
+++
|
|
|
|
# Prometheus data source
|
|
|
|
Grafana includes built-in support for Prometheus. This topic explains options, variables, querying, and other options specific to the Prometheus data source. Refer to [Add a data source]({{< relref "add-a-data-source.md" >}}) for instructions on how to add a data source to Grafana. Only users with the organization admin role can add data sources.
|
|
|
|
## Prometheus settings
|
|
|
|
To access Prometheus settings, hover your mouse over the **Configuration** (gear) icon, then click **Data Sources**, and then click the Prometheus data source.
|
|
|
|
| Name | Description |
|
|
| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
| _Name_ | The data source name. This is how you refer to the data source in panels and queries. |
|
|
| _Default_ | Default data source means that it will be pre-selected for new panels. |
|
|
| _Url_ | The URL of your Prometheus server, e.g. `http://prometheus.example.org:9090`. |
|
|
| _Access_ | Server (default) = URL needs to be accessible from the Grafana backend/server, Browser = URL needs to be accessible from the browser. |
|
|
| _Basic Auth_ | Enable basic authentication to the Prometheus data source. |
|
|
| _User_ | User name for basic authentication. |
|
|
| _Password_ | Password for basic authentication. |
|
|
| _Scrape interval_ | Set this to the typical scrape and evaluation interval configured in Prometheus. Defaults to 15s. |
|
|
| _Disable metrics lookup_ | Checking this option will disable the metrics chooser and metric/label support in the query field's autocomplete. This helps if you have performance issues with bigger Prometheus instances. |
|
|
| _Custom Query Parameters_ | Add custom parameters to the Prometheus query URL. For example `timeout`, `partial_response`, `dedup`, or `max_source_resolution`. Multiple parameters should be concatenated together with an '&'. |
|
|
|
|
## Prometheus query editor
|
|
|
|
Below you can find information and options for Prometheus query editor in dashboard and in Explore.
|
|
|
|
### Query editor in dashboards
|
|
|
|
Open a graph in edit mode by clicking the title > Edit (or by pressing `e` key while hovering over panel).
|
|
|
|
{{< docs-imagebox img="/img/docs/v45/prometheus_query_editor_still.png"
|
|
animated-gif="/img/docs/v45/prometheus_query_editor.gif" >}}
|
|
|
|
| Name | Description |
|
|
| ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
| _Query expression_ | Prometheus query expression, check out the [Prometheus documentation](http://prometheus.io/docs/querying/basics/). |
|
|
| _Legend format_ | Controls the name of the time series, using name or pattern. For example `{{hostname}}` is replaced with the label value for the label `hostname`. |
|
|
| _Min step_ | An additional lower limit for the [`step` parameter of Prometheus range queries](https://prometheus.io/docs/prometheus/latest/querying/api/#range-queries) and for the `$__interval` and `$__rate_interval` variables. The limit is absolute and not modified by the _Resolution_ setting. |
|
|
| _Resolution_ | `1/1` sets both the `$__interval` variable and the [`step` parameter of Prometheus range queries](https://prometheus.io/docs/prometheus/latest/querying/api/#range-queries) such that each pixel corresponds to one data point. For better performance, lower resolutions can be picked. `1/2` only retrieves a data point for every other pixel, and `1/10` retrieves one data point per 10 pixels. Note that both _Min time interval_ and _Min step_ limit the final value of `$__interval` and `step`. |
|
|
| _Metric lookup_ | Search for metric names in this input field. |
|
|
| _Format as_ | Switch between `Table`, `Time series`, or `Heatmap`. `Table` will only work in the Table panel. `Heatmap` is suitable for displaying metrics of the Histogram type on a Heatmap panel. Under the hood, it converts cumulative histograms to regular ones and sorts series by the bucket bound. |
|
|
| _Instant_ | Perform an "instant" query, to return only the latest value that Prometheus has scraped for the requested time series. Instant queries return results much faster than normal range queries. Use them to look up label sets. |
|
|
| _Min time interval_ | This value multiplied by the denominator from the _Resolution_ setting sets a lower limit to both the `$__interval` variable and the [`step` parameter of Prometheus range queries](https://prometheus.io/docs/prometheus/latest/querying/api/#range-queries). Defaults to _Scrape interval_ as set in the data source options. |
|
|
|
|
> **Note:** Grafana modifies the request dates for queries to align them with the dynamically calculated step. This ensures consistent display of metrics data, but it can result in a small gap of data at the right edge of a graph.
|
|
|
|
#### Instant queries in dashboards
|
|
|
|
The Prometheus data source allows you to run "instant" queries, which query only the latest value.
|
|
You can visualize the results in a table panel to see all available labels of a timeseries.
|
|
|
|
Instant query results are made up only of one data point per series but can be shown in the graph panel with the help of [series overrides]({{< relref "../panels/visualizations/graph-panel.md#series-overrides" >}}).
|
|
To show them in the graph as a latest value point, add a series override and select `Points > true`.
|
|
To show a horizontal line across the whole graph, add a series override and select `Transform > constant`.
|
|
|
|
> Support for constant series overrides is available from Grafana v6.4
|
|
|
|
### Query editor in Explore
|
|
|
|
| Name | Description |
|
|
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
| _Query expression_ | Prometheus query expression, check out the [Prometheus documentation](http://prometheus.io/docs/querying/basics/). |
|
|
| _Step_ | [`Step` parameter of Prometheus range queries](https://prometheus.io/docs/prometheus/latest/querying/api/#range-queries). Time units can be used here, for example: 5s, 1m, 3h, 1d, 1y. Default unit if no unit specified is `s` (seconds). |
|
|
| _Query type_ | `Range`, `Instant`, or `Both`. When running **Range query**, the result of the query is displayed in graph and table. Instant query returns only the latest value that Prometheus has scraped for the requested time series and it is displayed in the table. When **Both** is selected, both instant query and range query is run. Result of range query is displayed in graph and the result of instant query is displayed in the table. |
|
|
|
|
## Templating
|
|
|
|
Instead of hard-coding things like server, application and sensor name in your metric queries, you can use variables in their place.
|
|
Variables are shown as dropdown select boxes at the top of the dashboard. These dropdowns make it easy to change the data
|
|
being displayed in your dashboard.
|
|
|
|
Check out the [Templating]({{< relref "../variables/_index.md" >}}) documentation for an introduction to the templating feature and the different
|
|
types of template variables.
|
|
|
|
### Query variable
|
|
|
|
Variable of the type _Query_ allows you to query Prometheus for a list of metrics, labels or label values. The Prometheus data source plugin
|
|
provides the following functions you can use in the `Query` input field.
|
|
|
|
| Name | Description |
|
|
| -------------------------------- | ----------------------------------------------------------------------- |
|
|
| _label_\__names()_ | Returns a list of label names. |
|
|
| _label_\__values(label)_ | Returns a list of label values for the `label` in every metric. |
|
|
| _label_\__values(metric, label)_ | Returns a list of label values for the `label` in the specified metric. |
|
|
| _metrics(metric)_ | Returns a list of metrics matching the specified `metric` regex. |
|
|
| _query_\__result(query)_ | Returns a list of Prometheus query result for the `query`. |
|
|
|
|
For details of what _metric names_, _label names_ and _label values_ are please refer to the [Prometheus documentation](http://prometheus.io/docs/concepts/data_model/#metric-names-and-labels).
|
|
|
|
#### Using interval and range variables
|
|
|
|
> Support for `$__range`, `$__range_s` and `$__range_ms` only available from Grafana v5.3
|
|
|
|
You can use some global built-in variables in query variables; `$__interval`, `$__interval_ms`, `$__range`, `$__range_s` and `$__range_ms`, see [Global built-in variables]({{< relref "../variables/variable-types/global-variables.md" >}}) for more information. These can be convenient to use in conjunction with the `query_result` function when you need to filter variable queries since
|
|
|
|
`label_values` function doesn't support queries.
|
|
|
|
Make sure to set the variable's `refresh` trigger to be `On Time Range Change` to get the correct instances when changing the time range on the dashboard.
|
|
|
|
**Example usage:**
|
|
|
|
Populate a variable with the busiest 5 request instances based on average QPS over the time range shown in the dashboard:
|
|
|
|
```
|
|
Query: query_result(topk(5, sum(rate(http_requests_total[$__range])) by (instance)))
|
|
Regex: /"([^"]+)"/
|
|
```
|
|
|
|
Populate a variable with the instances having a certain state over the time range shown in the dashboard, using `$__range_s`:
|
|
|
|
```
|
|
Query: query_result(max_over_time(<metric>[${__range_s}s]) != <state>)
|
|
Regex:
|
|
```
|
|
|
|
### Using `$__rate_interval` variable
|
|
|
|
> **Note:** Available in Grafana 7.2 and above
|
|
|
|
The `$__rate_interval` variable is meant to be used in the rate function. It is defined as max( `$__interval` + _Scrape interval_, 4 \* _Scrape interval_), where _Scrape interval_ is the Min step setting (AKA query_interval, a setting per PromQL query), if any is set, and otherwise the _Scrape interval_ as set in the Prometheus data source (but ignoring any Min interval setting in the panel, because the latter is modified by the resolution setting).
|
|
|
|
### Using variables in queries
|
|
|
|
There are two syntaxes:
|
|
|
|
- `$<varname>` Example: rate(http_requests_total{job=~"\$job"}[5m])
|
|
- `[[varname]]` Example: rate(http_requests_total{job=~"[[job]]"}[5m])
|
|
|
|
Why two ways? The first syntax is easier to read and write but does not allow you to use a variable in the middle of a word. When the _Multi-value_ or _Include all value_
|
|
options are enabled, Grafana converts the labels from plain text to a regex compatible string. Which means you have to use `=~` instead of `=`.
|
|
|
|
## Annotations
|
|
|
|
[Annotations]({{< relref "../dashboards/annotations.md" >}}) allow you to overlay rich event information on top of graphs. You add annotation
|
|
queries via the Dashboard menu / Annotations view.
|
|
|
|
Prometheus supports two ways to query annotations.
|
|
|
|
- A regular metric query
|
|
- A Prometheus query for pending and firing alerts (for details see [Inspecting alerts during runtime](https://prometheus.io/docs/prometheus/latest/configuration/alerting_rules/#inspecting-alerts-during-runtime))
|
|
|
|
The step option is useful to limit the number of events returned from your query.
|
|
|
|
## Get Grafana metrics into Prometheus
|
|
|
|
Grafana exposes metrics for Prometheus on the `/metrics` endpoint. We also bundle a dashboard within Grafana so you can get started viewing your metrics faster. You can import the bundled dashboard by going to the data source edit page and click the dashboard tab. There you can find a dashboard for Grafana and one for Prometheus. Import and start viewing all the metrics!
|
|
|
|
For detailed instructions, refer to [Internal Grafana metrics]({{< relref "../administration/metrics.md">}}).
|
|
|
|
## Provision the Prometheus data source
|
|
|
|
You can configure data sources using config files with Grafana's provisioning system. Read more about how it works and all the settings you can set for data sources on the [provisioning docs page]({{< relref "../administration/provisioning/#datasources" >}})
|
|
|
|
Here are some provisioning examples for this data source:
|
|
|
|
```yaml
|
|
apiVersion: 1
|
|
|
|
datasources:
|
|
- name: Prometheus
|
|
type: prometheus
|
|
access: proxy
|
|
url: http://localhost:9090
|
|
```
|