diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 88b9bb6e83..1909e57a6f 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -1113,7 +1113,7 @@ enable_prometheus_etcd_integration: "{{ enable_prometheus | bool and enable_etcd prometheus_alertmanager_user: "admin" prometheus_scrape_interval: "60s" prometheus_openstack_exporter_interval: "{{ prometheus_scrape_interval }}" -prometheus_openstack_exporter_timeout: "10s" +prometheus_openstack_exporter_timeout: "45s" prometheus_elasticsearch_exporter_interval: "{{ prometheus_scrape_interval }}" prometheus_cmdline_extras: prometheus_ceph_mgr_exporter_endpoints: [] diff --git a/releasenotes/notes/increase-prometheus-openstack-exporter-timeout-652eebff6a42d198.yaml b/releasenotes/notes/increase-prometheus-openstack-exporter-timeout-652eebff6a42d198.yaml new file mode 100644 index 0000000000..f9962fdefb --- /dev/null +++ b/releasenotes/notes/increase-prometheus-openstack-exporter-timeout-652eebff6a42d198.yaml @@ -0,0 +1,7 @@ +--- +fixes: + - | + Increases ``prometheus_openstack_exporter_timeout`` to 45 seconds to reduce + the odds of scrape failures on deployments with large number of OpenStack + resources. + `LP#1976629 `__