-
Notifications
You must be signed in to change notification settings - Fork 22
/
config.ini
45 lines (39 loc) · 1.48 KB
/
config.ini
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
# Target block is about the Cloudera data for API connection
[target]
# Cloudera master Host
host = cloudera_manager
# Cloudera API Port
port = 7180
# The next param overwrite values obtained by API query. If you don't want to overwrite it, leave the param blank
# Cloudera API Version (vXX)
version =
# User block is about the Cloudera credentials for API connection
[user]
# User name (Only read permision is required)
username = USER
# User Password
password = PASSWD
# Modules block is about the metrics module it's gonna be loaded. By default all of them are false.
# true: Module loaded
# false: Module not loaded
[modules]
# Status metrics module
global_status_module = true
# Hosts metrics module
host_module = true
# HDFS metrics module
hdfs_module = true
# Impala metrics module
impala_module = true
# Yarn metrics module (Still doesn't work)
yarn_module = false
# System block is about the Exporters run parameters
[system]
# Num of Golang Threads
num_procs = 8
# IP address to publish the scraped metrics. If the field is blank, exporter will attach to all the interfaces
deploy_ip =
# Port to publish the scraped metrics
deploy_port = 9200
#log_level == 0 (NORMAL); log_level == 1 (DEBUG)
log_level = 0