-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhmci.toml
62 lines (49 loc) · 1.89 KB
/
hmci.toml
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
54
55
56
57
58
59
60
61
62
# HMCi Configuration
# Copy this file into /etc/hmci.toml and customize it to your environment.
###
### Define zero or one InfluxDB to save metrics into
###
# InfluxDB v1.x example
#[influx]
#url = "http://localhost:8086"
#username = "root"
#password = ""
#database = "hmci"
# InfluxDB v2.x example
#[influx]
#url = "http://localhost:8086"
#org = "myOrg"
#token = "tlwdfmi2rMvI8d_denGCjJkM1Rk6W56RHDWAxcFIFszeCdVRYuRWVSJTJ6FgIb3kxCedlUakFfkRR6dLaMjiYg=="
#bucket = "hmci"
###
### Define zero or one Prometheus for data scraping
###
# http://localhost:9040/metrics
[prometheus]
port = 9040
###
### Define one or more HMC's to query for metrics
### Each entry must be named [hmc.<something-unique>]
###
# HMC to query for data and metrics
[hmc.site1]
url = "https://10.32.64.80:12443"
username = "hmci"
password = "hmcihmci"
# default values below, change if required.
#refresh = 30 # How often to query HMC for data - in seconds
#discover = 120 # Rescan HMC for new systems and partitions - in minutes
#trust = true # Ignore SSL cert. errors (due to default self-signed cert. on HMC)
#energy = true # Collect energy metrics on supported systems
#timeout = 180 # HTTP Read Timeout (increase this of you see timeout errors in log) - in seconds
# Another HMC example
#[hmc.site2]
#url = "https://10.10.20.5:12443"
#username = "user"
#password = "password"
#timeout = 300
#trace = "/tmp/hmci-trace" # When present, store JSON metrics files from HMC into this folder
#excludeSystems = [ 'notThisSystem' ] # Collect metrics from all systems except those listed here
#includeSystems = [ 'onlyThisSystems' ] # Collcet metrics from no systems but those listed here
#excludePartitions = [ 'skipThisPartition' ] # Collect metrics from all partitions except those listed here
#includePartitions = [ 'onlyThisPartition' ] # Collect metrics from no partitions but those listed here