Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| # Prometheus configuration for cockroach clusters. | |
| # Requires prometheus 2.X | |
| # | |
| # Run with: | |
| # $ prometheus -config.file=prometheus.yml | |
| global: | |
| scrape_interval: 10s | |
| evaluation_interval: 10s | |
| rule_files: | |
| - "rules/alerts.rules.yml" | |
| - "rules/aggregation.rules.yml" | |
| # Alert manager running on the same host: | |
| alerting: | |
| alertmanagers: | |
| - path_prefix: "/alertmanager/" | |
| static_configs: | |
| - targets: | |
| - localhost:9093 | |
| scrape_configs: | |
| - job_name: 'cockroachdb' | |
| metrics_path: '/_status/vars' | |
| # Insecure mode: | |
| scheme: 'http' | |
| # Secure mode: | |
| # scheme: 'https' | |
| tls_config: | |
| insecure_skip_verify: true | |
| static_configs: | |
| - targets: ['localhost:8080'] | |
| labels: | |
| cluster: 'my-cockroachdb-cluster' |