forked from NetApp/harvest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharvest.yml
53 lines (47 loc) · 1.35 KB
/
harvest.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Tools:
#grafana_api_token: 'aaa-bbb-ccc-ddd'
Exporters:
prometheus:
exporter: Prometheus
addr: 0.0.0.0
port: 12990
prometheus1:
exporter: Prometheus
addr: 0.0.0.0
port: 12991
Defaults:
collectors:
- Zapi
- ZapiPerf
use_insecure_tls: false
Pollers:
# this is a special/optional poller that provides stats about harvest itself
# to remove this poller, simply delete the section "unix"
unix:
datacenter: local
addr: localhost
collectors:
- Unix
exporters:
- prometheus
# add your Cdot / 7Mode pollers below, example:
# cluster-01:
# datacenter: DC-01
# addr: 10.0.0.1
# auth_style: basic_auth
# username: myuser
# password: mypasw
# use_insecure_tls: true # since we don't use certificate authentication
# exporters:
# - prometheus1
# no need to add collectors, already defined in Defaults!
# example where we use certificate authentication
# cluster-01:
# datacenter: DC-01
# addr: 10.0.0.2
# auth_style: certificate_auth
# ssl_cert: /path/to/cert.pem
# ssl_key: /path/to/key.key
# use_insecure_tls: false # if harvest should be able to authenticate your server, set this true
# otherwise set it to false (if cluster has no valid server certificates)
# # all the other parameters should be the same