2025-10-18 14:07:20 +02:00
|
|
|
###############################################################################
|
|
|
|
|
##### File created by Puppet - manual changes will be overwritten #####
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
2025-10-18 12:30:47 +02:00
|
|
|
global:
|
|
|
|
|
scrape_interval: 60s
|
|
|
|
|
scrape_timeout: 10s
|
|
|
|
|
evaluation_interval: 15s
|
|
|
|
|
storage:
|
|
|
|
|
tsdb:
|
|
|
|
|
out_of_order_time_window: 5m
|
|
|
|
|
alerting:
|
|
|
|
|
alertmanagers:
|
|
|
|
|
- follow_redirects: true
|
|
|
|
|
scheme: http
|
|
|
|
|
timeout: 10s
|
|
|
|
|
api_version: v2
|
|
|
|
|
static_configs:
|
|
|
|
|
- targets: []
|
|
|
|
|
scrape_configs:
|
|
|
|
|
- job_name: prometheus
|
|
|
|
|
honor_timestamps: true
|
|
|
|
|
scrape_interval: 60s
|
|
|
|
|
scrape_timeout: 10s
|
|
|
|
|
metrics_path: /metrics
|
|
|
|
|
scheme: http
|
|
|
|
|
follow_redirects: true
|
|
|
|
|
static_configs:
|
|
|
|
|
- targets:
|
|
|
|
|
- localhost:9090
|
|
|
|
|
basic_auth:
|
2025-10-18 13:08:50 +02:00
|
|
|
username: <%= @ps_auth_user %>
|
|
|
|
|
password: <%= @ps_auth_pass %>
|
2025-12-04 10:54:47 +01:00
|
|
|
remote_write:
|
2025-12-03 15:29:56 +01:00
|
|
|
<% if @ps_write_external == true -%>
|
|
|
|
|
- url: "<%= @ps_external_url %>"
|
|
|
|
|
basic_auth:
|
|
|
|
|
username: <%= @ps_auth_ext_user %>
|
|
|
|
|
password: <%= @ps_auth_ext_pass %>
|
|
|
|
|
<% end -%>
|