diff --git a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/queues/QueuesView.tsx b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/queues/QueuesView.tsx index 9862457..7923705 100644 --- a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/queues/QueuesView.tsx +++ b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/queues/QueuesView.tsx @@ -119,31 +119,33 @@ export const QueuesView: React.FunctionComponent = navigate => { A Filter will search for messages that have a matching property. Filter Examples - header = 'value' - This will return any message where the message header header has the string value value - header = 1 - This will return any message where the message header header has the int, short, long or double value 1 - header {'>'} 1 - This will return any message where the message header header has an int, short, long or double value greater than 1 - header {'<>'} 'value' - This will return any message where the message header header exists and does not equal value - header IN ('value1', 'value2') - This will return any message where the message header header equals either value1 or value2 - header1 = 'value1' AND header2 = 'value2' - This will return any message where the message header header1 has the value value1 and the message header header2 has the value value2 - header LIKE 'value%' - This will return any message where the message header header has the pattern matching value value% such as value1, value2345 etc - header LIKE 'value_' - This will return any message where the message header header has the pattern matching value value_ such as value1 but not value2345 - header IS null - This will return any message where the message header header has a null value or does not exist + property = 'value' + This will return any message where the message property property has the string value value + property = 1 + This will return any message where the message property property has the int, short, long or double value 1 + property {'>'} 1 + This will return any message where the message property property has an int, short, long or double value greater than 1 + property {'<>'} 'value' + This will return any message where the message property property exists and does not equal value + property IN ('value1', 'value2') + This will return any message where the message property property equals either value1 or value2 + property1 = 'value1' AND property2 = 'value2' + This will return any message where the message property property1 has the value value1 and the message property property2 has the value value2 + property LIKE 'value%' + This will return any message where the message property property has the pattern matching value value% such as value1, value2345 etc + property LIKE 'value_' + This will return any message where the message property property has the pattern matching value value_ such as value1 but not value2345 + property IS null + This will return any message where the message property property has a null value or does not exist - The following pre defined identifiers can also be used to filter messages + The following pre defined identifiers can also be used to filter messages AMQUserID The ID set by the user when the message is sent. This is analogous to the JMSMessageID for JMS-based clients. AMQAddress The address to which the message was sent. + AMQGroupID + The group ID used when sending the message. AMQPriority To refer to the priority of a message. Message priorities are integers with valid values from 0 - 9. 0 is the lowest priority and 9 is the highest. e.g. AMQPriority = 3 AND animal = 'aardvark' AMQExpiration @@ -154,8 +156,6 @@ export const QueuesView: React.FunctionComponent = navigate => { The timestamp of when the message was created. The value is a long integer. AMQSize The size of a message in bytes. The value is an integer. - AMQGroupID - The group ID used when sending the message.