Skip to content

Commit f9a5532

Browse files
committed
add extended explanation for using wildcards
Resolves: #49
1 parent e9ce739 commit f9a5532

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,10 @@ PCFParameters:
108108
# Collect additional metrics? If false, all settings in this section below are ignored.
109109
# If yes, additional metrics will be collected for all queues, channels and listeners listed below.
110110
sendPCFCommands: true
111-
# Use wildcards? If yes, only one PCF command will be send, matching all objects on queue manager. Otherwise, each
112-
# object will be monitored by separate PCF command.
111+
# If usePCFWildcards equals "true", then all monitored objects will be grouped by object type: QUEUE, CHANNEL and LISTENER. Only one PCF command will be send for each object type. Metrics will be obtained from the PCF command response for each object one type.
112+
# If usePCFWildcards equals "false", then PCF command will be send for each object.
113+
# PCF command are sent in one connection to MQ queue manager, so for many PCF command will be opened many connection to MQ queue manager.
114+
# For example, for 100 monitoring queue will be opened 100 connection to MQ queue manager, if usePCFwildcard equals "false".
113115
usePCFWildcards: true
114116
# Interval in seconds between sending PCF commands.
115117
scrapeInterval: 10

src/main/resources/exporter_config.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,12 @@ PCFParameters:
3333
# Collect additional metrics? If false, all settings in this section below are ignored.
3434
# If yes, additional metrics will be collected for all queues, channels and listeners listed below.
3535
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.
36+
# If usePCFWildcards equals "true", then all monitored objects will be grouped by object type:
37+
# QUEUE, CHANNEL and LISTENER. Only one PCF command will be send for each object type.
38+
# Metrics will be obtained from the PCF command response for each object one type.
39+
# If usePCFWildcards equals "false", then PCF command will be send for each object.
40+
# PCF command are sent in one connection to MQ queue manager, so for many PCF command will be opened many connection to MQ queue manager.
41+
# For example, for 100 monitoring queue will be opened 100 connection to MQ queue manager, if usePCFwildcard equals "false".
3842
usePCFWildcards: true
3943
# Interval in seconds between sending PCF commands.
4044
scrapeInterval: 10

0 commit comments

Comments
 (0)