You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Run it as a scheduled task instead of running every minute.
2
+
#If you want to run this every minute, comment this out
3
+
#taskSchedule:
4
+
# numberOfThreads: 20
5
+
# taskDelaySeconds: 300
6
+
7
+
#This is the timeout on queue metrics and channel metrics threads.Default value is 20 seconds.
8
+
#No need to change the default unless you know what you are doing.
9
+
#queueMetricsCollectionTimeoutInSeconds: 40
10
+
#channelMetricsCollectionTimeoutInSeconds: 40
11
+
#topicMetricsCollectionTimeoutInSeconds: 40
12
+
13
+
queueManagers:
14
+
- name: "QM1"
15
+
host: "0.0.0.0"
16
+
port: 1414
17
+
18
+
# Indicate the MaxActiveChannels as set in qm.ini, see https://www.ibm.com/docs/en/ibm-mq/9.3.x?topic=qmini-channels-stanza-file
19
+
maxActiveChannels: 4200
20
+
21
+
#The transport type for the queue manager connection, the default is "Bindings" for a binding type connection
22
+
#For bindings type, connection WMQ extension (i.e machine agent) need to be on the same machine on which WebbsphereMQ server is running
23
+
#For client type, connection change it to "Client".
24
+
transportType: "Client"
25
+
26
+
#Channel name of the queue manager, channel should be server-conn type.
27
+
#This field is not required in case of transportType: Bindings
28
+
channelName: DEV.ADMIN.SVRCONN
29
+
30
+
#for user access level, please check "Access Permissions" section on the extensions page
31
+
#comment out the username and password in case of transportType: Bindings.
32
+
username: "admin"
33
+
password: "passw0rd"
34
+
35
+
#PCF requests are always sent to SYSTEM.ADMIN.COMMAND.QUEUE. The PCF responses to these requests are sent to the default reply-to queue called
36
+
#SYSTEM.DEFAULT.MODEL.QUEUE. However, you can override this behavior and send it to a temporary dynamic queue by changing the modelQueueName and replyQueuePrefix fields.
37
+
#For more details around this https://www.ibm.com/support/knowledgecenter/SSFKSJ_7.5.0/com.ibm.mq.ref.adm.doc/q083240_.htm & https://www.ibm.com/support/knowledgecenter/SSFKSJ_8.0.0/com.ibm.mq.adm.doc/q020010_.htm
38
+
#modelQueueName: ""
39
+
#replyQueuePrefix: ""
40
+
41
+
# Name of the temporary dynamic queue holding the configuration events. This queue contains information regarding the configuration of the queue manager, notable MaxChannels and MaxActiveChannels.
42
+
# If unset, the default queue name `SYSTEM.ADMIN.CONFIG.EVENT` is applied.
43
+
# Configuration events need to be enabled explicitly in the queue manager configuration. See https://www.ibm.com/docs/en/ibm-mq/9.4.x?topic=monitoring-configuration-events for reference.
0 commit comments