Merge "Adds prometheus_scrape_interval"

This commit is contained in:
Zuul 2022-04-21 16:55:35 +00:00 committed by Gerrit Code Review
commit 2c15d36fed
5 changed files with 33 additions and 3 deletions

View File

@ -1111,9 +1111,10 @@ enable_prometheus_libvirt_exporter: "{{ enable_prometheus | bool and enable_nova
enable_prometheus_etcd_integration: "{{ enable_prometheus | bool and enable_etcd | bool }}"
prometheus_alertmanager_user: "admin"
prometheus_openstack_exporter_interval: "60s"
prometheus_scrape_interval: "60s"
prometheus_openstack_exporter_interval: "{{ prometheus_scrape_interval }}"
prometheus_openstack_exporter_timeout: "10s"
prometheus_elasticsearch_exporter_interval: "60s"
prometheus_elasticsearch_exporter_interval: "{{ prometheus_scrape_interval }}"
prometheus_cmdline_extras:
prometheus_ceph_mgr_exporter_endpoints: []
prometheus_openstack_exporter_endpoint_type: "internal"

View File

@ -7,3 +7,6 @@ datasources:
orgId: 1
url: {{ grafana_prometheus_url }}
version: 1
jsonData:
timeInterval: {{ prometheus_scrape_interval }}

View File

@ -1,5 +1,5 @@
global:
scrape_interval: 60s
scrape_interval: {{ prometheus_scrape_interval }}
scrape_timeout: 10s
evaluation_interval: 15s
external_labels:

View File

@ -45,6 +45,20 @@ and data retention size to 30 gigabytes:
prometheus_cmdline_extras: "--query.timeout=1m --storage.tsdb.retention.size=30GB"
Configuration options
~~~~~~~~~~~~~~~~~~~~~
.. list-table:: Configuration options
:widths: 25 25 75
:header-rows: 1
* - Option
- Default
- Description
* - prometheus_scrape_interval
- 60s
- Default scape interval for all jobs
Extending prometheus.cfg
~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -0,0 +1,12 @@
---
features:
- |
Adds the ``prometheus_scrape_interval`` configuration option. The default
is set to ``60s``. This configures the default scrape interval for all
jobs.
fixes:
- |
The scrape interval for the prometheus data source in grafana is now to set
to ``prometheus_scrape_interval``. This fixes issues with dashboards that
use the ``$__rate_interval`` grafana variable as the default scrape
interval of 60s does not match the grafana default of 15s.