-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
Signed-off-by: Augustin Husson <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# my global config | ||
global: | ||
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute. | ||
Check warning on line 3 in prometheus.yml GitHub Actions / validate-yaml
|
||
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute. | ||
Check warning on line 4 in prometheus.yml GitHub Actions / validate-yaml
|
||
# scrape_timeout is set to the global default (10s). | ||
|
||
# Alertmanager configuration | ||
alerting: | ||
alertmanagers: | ||
- static_configs: | ||
- targets: | ||
# - alertmanager:9093 | ||
Check warning on line 12 in prometheus.yml GitHub Actions / validate-yaml
|
||
|
||
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'. | ||
rule_files: | ||
# - "first_rules.yml" | ||
# - "second_rules.yml" | ||
|
||
# A scrape configuration containing exactly one endpoint to scrape: | ||
# Here it's Prometheus itself. | ||
scrape_configs: | ||
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config. | ||
- job_name: "prometheus" | ||
|
||
# metrics_path defaults to '/metrics' | ||
# scheme defaults to 'http'. | ||
static_configs: | ||
- targets: [ "prometheus:9090" ] | ||
Check failure on line 28 in prometheus.yml GitHub Actions / validate-yaml
Check failure on line 28 in prometheus.yml GitHub Actions / validate-yaml
Check failure on line 28 in prometheus.yml GitHub Actions / validate-yaml
|
||
- job_name: "perses" | ||
static_configs: | ||
- targets: [ "demo:8080" ] | ||
Check failure on line 31 in prometheus.yml GitHub Actions / validate-yaml
Check failure on line 31 in prometheus.yml GitHub Actions / validate-yaml
Check failure on line 31 in prometheus.yml GitHub Actions / validate-yaml
Check failure on line 31 in prometheus.yml GitHub Actions / validate-yaml
Check failure on line 31 in prometheus.yml GitHub Actions / validate-yaml
|