This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1958 from grafana/fix-docker-dev-bigtable
Fix docker-dev-bigtable
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
global: | ||
scrape_interval: 1s | ||
evaluation_interval: 1s | ||
|
||
# Attach these labels to any time series or alerts when communicating with | ||
# external systems (federation, remote storage, Alertmanager). | ||
external_labels: | ||
monitor: 'docker-host-alpha' | ||
|
||
# Load and evaluate rules in this file every 'evaluation_interval' seconds. | ||
rule_files: | ||
|
||
# A scrape configuration containing exactly one endpoint to scrape. | ||
scrape_configs: | ||
- job_name: 'nodeexporter' | ||
scrape_interval: 1s | ||
static_configs: | ||
- targets: ['nodeexporter:9100'] | ||
|
||
- job_name: 'cadvisor' | ||
scrape_interval: 1s | ||
static_configs: | ||
- targets: ['cadvisor:8080'] | ||
|
||
- job_name: 'prometheus' | ||
scrape_interval: 1s | ||
static_configs: | ||
- targets: ['localhost:9090'] | ||
|
||
- job_name: metrictank | ||
metrics_path: /prometheus/metrics | ||
scrape_interval: 1s | ||
static_configs: | ||
- targets: ['metrictank:6060'] |