Updated the container service
Change-Id: Ic1e4362f4d36d30283a5963f4e82b3e54ca51724 Related-Bug: PROD-21820
This commit is contained in:
parent
6c2a6057fc
commit
ddc9a92a86
1 changed files with 4 additions and 2 deletions
|
@ -4,9 +4,11 @@ classes:
|
||||||
- service.prometheus.support
|
- service.prometheus.support
|
||||||
parameters:
|
parameters:
|
||||||
_param:
|
_param:
|
||||||
|
prometheus_am_queue_capacity: 10000
|
||||||
prometheus_evaluation_interval: "15s"
|
prometheus_evaluation_interval: "15s"
|
||||||
prometheus_region_label: "region1"
|
prometheus_region_label: "region1"
|
||||||
prometheus_scrape_interval: "15s"
|
prometheus_scrape_interval: "15s"
|
||||||
|
prometheus_scrape_timeout: "15s"
|
||||||
prometheus_storage_retention: "360h"
|
prometheus_storage_retention: "360h"
|
||||||
prometheus:
|
prometheus:
|
||||||
server:
|
server:
|
||||||
|
@ -27,11 +29,11 @@ parameters:
|
||||||
local:
|
local:
|
||||||
retention: ${_param:prometheus_storage_retention}
|
retention: ${_param:prometheus_storage_retention}
|
||||||
alertmanager:
|
alertmanager:
|
||||||
notification_queue_capacity: 10000
|
notification_queue_capacity: ${_param:prometheus_am_queue_capacity}
|
||||||
config:
|
config:
|
||||||
global:
|
global:
|
||||||
scrape_interval: ${_param:prometheus_scrape_interval}
|
scrape_interval: ${_param:prometheus_scrape_interval}
|
||||||
scrape_timeout: "15s"
|
scrape_timeout: ${_param:prometheus_scrape_timeout}
|
||||||
evaluation_interval: ${_param:prometheus_evaluation_interval}
|
evaluation_interval: ${_param:prometheus_evaluation_interval}
|
||||||
external_labels:
|
external_labels:
|
||||||
region: ${_param:prometheus_region_label}
|
region: ${_param:prometheus_region_label}
|
||||||
|
|
Loading…
Reference in a new issue