1
1
# MQ connection information -------------------------------
2
2
qmgrConnectionParams :
3
+ # Queue manager name.
3
4
qmgrName : QM
5
+ # Queue manager host.
4
6
qmgrHost : hostname
7
+ # Queue manager connection port.
5
8
qmgrPort : 1414
9
+ # Queue manager connection channel.
6
10
qmgrChannel : SYSTEM.DEF.SVRCONN
11
+ # Username, which will be used for connection (optional).
12
+ # User must have permission to subscribe to the topic $SYS/MQ/INFO/QMGR/QM/Monitor/ and all subtopics.
13
+ # User also must have permission to inquire channels, queues and listeners listed below in Monitoring objects section!
7
14
user : mqm
15
+ # Password, which will be used for connection (optional).
8
16
password : mqm
17
+ # Use MQCSP for connection?
9
18
mqscp : false
10
19
11
20
# Prometheus connection information -------------------------------
12
21
prometheusEndpointParams :
22
+ # URL and port which will be used to expose metrics for Prometheus.
13
23
url : /metrics
14
24
port : 8080
15
25
16
26
17
27
# Monitoring objects ----------------------------------
18
-
28
+ # This block refers to collecting of additional metrics.
29
+ # If there are any queues, channels or listeners in the config file below,
30
+ # these metrics may be useful for you. (More info about additional metrics is located
31
+ # under "MQ PCF API specific statistics" section.
19
32
PCFParameters :
33
+ # Collect additional metrics? If false, all settings in this section below are ignored.
34
+ # If yes, additional metrics will be collected for all queues, channels and listeners listed below.
20
35
sendPCFCommands : true
36
+ # Use wildcards? If yes, only one PCF command will be send, matching all objects on queue manager. Otherwise, each
37
+ # object will be monitored by separate PCF command.
21
38
usePCFWildcards : true
39
+ # Interval in seconds between sending PCF commands.
22
40
scrapeInterval : 10
23
41
42
+ # Monitored queues.
24
43
queues :
25
- - TEST.QUEUE.1
26
- - TEST.QUEUE.2
44
+ - QUEUE1
45
+ - QUEUE2
27
46
47
+ # Monitored listeners.
28
48
listeners :
29
49
- LISTENER01
30
-
50
+
51
+ # Monitored channels.
31
52
channels :
32
- - TEST .CHANNEL
53
+ - MANAGEMENT .CHANNEL
0 commit comments