This repository was archived by the owner on Mar 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathprometheus.yml
More file actions
47 lines (39 loc) · 1.23 KB
/
prometheus.yml
File metadata and controls
47 lines (39 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# my global config
global:
scrape_interval: 5s # Set the scrape interval to every 5 seconds. Default is every 1 minute.
evaluation_interval: 5s # Evaluate rules every 5 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
# 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:
# Configuration to poll from Yellow MicroProfile
- job_name: 'Membership'
scrape_interval: 5s
static_configs:
- targets: ['localhost:8080']
# Configuration to poll from Blue MicroProfile
- job_name: 'User'
scrape_interval: 5s
static_configs:
- targets: ['localhost:9443']
scheme: https
tls_config:
insecure_skip_verify: true
basic_auth:
username: admin
password: adminpwd
# Configuration to poll from Red MicroProfile
- job_name: 'Profiling'
scrape_interval: 5s
static_configs:
- targets: ['localhost:7080']