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
Copy file name to clipboardExpand all lines: ibm-mq-metrics/src/integrationTest/java/io/opentelemetry/ibm/mq/integration/tests/WMQMonitorIntegrationTest.java
#This is the timeout on queue metrics and channel metrics threads.Default value is 20 seconds.
3
+
#No need to change the default unless you know what you are doing.
4
+
#queueMetricsCollectionTimeoutInSeconds: 40
5
+
#channelMetricsCollectionTimeoutInSeconds: 40
6
+
#topicMetricsCollectionTimeoutInSeconds: 40
7
+
8
+
queueManagers:
9
+
- name: "QM1"
10
+
host: "localhost"
11
+
port: 1414
12
+
13
+
#The transport type for the queue manager connection, the default is "Bindings" for a binding type connection
14
+
#For bindings type, connection WMQ extension (i.e machine agent) need to be on the same machine on which WebbsphereMQ server is running
15
+
#For client type, connection change it to "Client".
16
+
transportType: "Client"
17
+
18
+
#Channel name of the queue manager, channel should be server-conn type.
19
+
#This field is not required in case of transportType: Bindings
20
+
channelName: DEV.ADMIN.SVRCONN
21
+
22
+
#for user access level, please check "Access Permissions" section on the extensions page
23
+
#comment out the username and password in case of transportType: Bindings.
24
+
username: "admin"
25
+
password: "passw0rd"
26
+
27
+
#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
28
+
#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.
29
+
#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
30
+
#modelQueueName: ""
31
+
#replyQueuePrefix: ""
32
+
33
+
34
+
#Sets the CCSID used in the message descriptor of request and response messages. The default value is MQC.MQCCSI_Q_MGR.
35
+
#To set this, please use the integer value.
36
+
#ccsid:
37
+
38
+
#Sets the encoding used in the message descriptor of request and response messages. The default value is MQC.MQENC_NATIVE.
39
+
#To set this, please use the integer value.
40
+
#encoding:
41
+
42
+
# IBM Cipher Suite e.g. "SSL_RSA_WITH_AES_128_CBC_SHA256"..
43
+
# For translation to IBM Cipher http://www.ibm.com/support/knowledgecenter/SSFKSJ_8.0.0/com.ibm.mq.dev.doc/q113210_.htm
44
+
# A cipher working for IBM Cloud MQ and Temurin JDK 8 is TLS_AES_128_GCM_SHA256
45
+
#cipherSuite: "TLS_AES_128_GCM_SHA256"
46
+
47
+
48
+
queueFilters:
49
+
#Can provide complete queue name or generic names. A generic name is a character string followed by an asterisk (*),
50
+
#for example ABC*, and it selects all objects having names that start with the selected character string.
51
+
#An asterisk on its own matches all possible names.
0 commit comments