-
Notifications
You must be signed in to change notification settings - Fork 1
/
prom.yml
33 lines (33 loc) · 929 Bytes
/
prom.yml
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
scrape_configs:
# Configuration to poll from Thorntail
- job_name: 'thorntail'
scrape_interval: 15s
static_configs:
- targets: ['localhost:8280']
# Configuration to poll from WildFly
- job_name: 'wildfly'
scrape_interval: 15s
static_configs:
- targets: ['localhost:10090']
# Configuration to poll from OpenLiberty
- job_name: 'liberty'
scrape_interval: 15s
scheme: https
basic_auth:
username: 'theUser'
password: 'thePassword'
tls_config:
insecure_skip_verify: true
# translates to https://localhost:9443/metrics
static_configs:
- targets: ['localhost:9443']
# Configuration to poll from Payara
- job_name: 'payara'
scrape_interval: 15s
static_configs:
- targets: ['localhost:7080']
# Configuration to poll from Helidon
- job_name: 'helidon'
scrape_interval: 15s
static_configs:
- targets: ['localhost:8080']