-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrs-collector.conf
82 lines (69 loc) · 2.22 KB
/
rs-collector.conf
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# // vim: set ft=toml:
# Hostname and port of Bosun; may include basic auth and https config similar to scollector
Host = "localhost:8070"
FullHost = false
# Local hostname
Hostname = "muffin"
# Disable metrics transmission for debugging purpose; omit for production
DontSend = true
# Bosun tags
[Tags]
hostgroup = "dev"
domain = "lukas.pustina"
hosttype = "vm"
# Galera configuration for host and user that has permissions to access local statistics
[Galera]
User = "root"
Password = "toor"
Host = "localhost"
# Activates SSL transport encryption and requires a least a CA certificate; currently only supported on Linux
UseSsl = true
CaCert = "Path to CA certificate"
# If a client cert is set, a client cert key file is required
ClientCert = "certs/my_galera_client_cert.pem"
ClientCertKey = "certs/my_galera_client_cert.key"
# HasIpAddr configuration with list of IP addresses to monitor
[HasIpAddr]
Ipv4 = [ "127.0.0.1", "172.0.0.1" ]
# Megaraid configuration
[Megaraid]
id = "0"
tick_interval = 16
megacli_command = "/opt/MegaRAID/MegaCli/MegaCli64"
adapter = "ALL"
# Mongo configuration -- multiple instances are allowed
[[Mongo]]
Name = "replicaset01"
Host = "localhost"
Port = 27015
# 'admin' database user
User = "root"
Password = "secret"
# Activates SSL transport encryption and requires a least a CA certificate; currently only supported on Linux
UseSsl = true
CaCert = "Path to CA certificate"
# If a client cert is set, a client cert key file is required
ClientCert = "certs/my_mongo_client_cert.pem"
ClientCertKey = "certs/my_mongo_client_cert.key"
[[Mongo]]
Name = "replicaset02"
Host = "localhost"
Port = 27016
[[Mongo]]
Name = "config"
Host = "localhost"
Port = 27019
# Postfix configuration -- only activation without any parameters
[Postfix]
# JVM GC Stats configuration -- multiple instances are allowed
[[Jvm]]
# Regex to parse class name and cmd line values as returned from jps -lv in order to identify a JVM
Command = "centerdevice-import-server"
# Name to assign to an identified JVM
Name = "centerdevice-import-server"
[[Jvm]]
Command = "tomcat-centerdevice"
Name = "tomcat-centerdevice"
[[Jvm]]
Command = "elasticsearch"
Name = "elasticsearch"