forked from rajivmucheli/vcenter-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
36 lines (36 loc) · 1.02 KB
/
config.yaml
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
main:
listen_port: '9102'
host: 'localhost'
user: 'user'
password: 'password'
port: 443
ignore_ssl: True
interval: 300
log: INFO
shorter_names_regex: '\.some\.domain\.name'
host_match_regex: '.*buildingblock-xy.*'
ignore_match_regex: '^testvmware.*'
vm_metrics:
- 'cpu.latency.average'
- 'cpu.usage.average'
- 'cpu.usagemhz.average'
- 'cpu.wait.summation'
- 'disk.usage.average'
- 'disk.numberRead.summation'
- 'disk.numberWrite.summation'
- 'mem.usage.average'
- 'net.usage.average'
- 'net.bytesRx.average'
- 'net.bytesTx.average'
- 'net.droppedRx.summation'
- 'net.droppedTx.summation'
- 'net.errorsRx.summation'
- 'net.errorsTx.summation'
- 'net.packetsRx.summation'
- 'net.packetsTx.summation'
- 'virtualDisk.read.average'
- 'virtualDisk.write.average'
- 'virtualDisk.readIOI.latest'
- 'virtualDisk.writeIOI.latest'
- 'virtualDisk.totalReadLatency.average'
- 'virtualDisk.totalWriteLatency.average'