forked from cleargray/ipmitool_exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ipmi_remote.yml
35 lines (33 loc) · 1.41 KB
/
ipmi_remote.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
# Configuration file for ipmitool_exporter
# This is an example config for scraping remote hosts via IPMI.
# Information required to access remote IPMI interfaces can be supplied in the
# 'modules' section. A scrape can request the usage of a given config by
# setting the `module` URL parameter.
modules:
default:
# These settings are used if no module is specified, the
# specified module doesn't exist, or of course if
# module=default is specified.
user: "default_user"
pass: "default_pass"
# The below settings correspond to privilege-level and
# session-timeout respectively
privilege: "administrator"
# The session timeout is in seconds. Note that a scrape can take up
# to (session-timeout * #-of-collectors) seconds, so set the scrape
# timeout in Prometheus accordingly.
timeout: 5
# Available collectors are sensor, fru, and fwum
# If not specified, all three are used
collectors:
- fru
- sensor
- fwum
example:
user: "example_user"
pass: "example_pass"
privilege: "administrator"
timeout: 5
collectors:
- fru
- sensor