Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

RequirementSearch SyntaxExample
Search for messages where the payload contains specific text.beforePayload: \"REQUIRED_TEXT" OR afterPayload: \"REQUIRED_TEXT"

If you need to search for a message with a payload that contains the text foo, the search text entered in the Search field should be as follows.
beforePayload: \"foo\" OR afterPayload: \"foo\"

Search for a message with a specific message flow ID.messageId:<MESSAGE_FLOW_ID>If you need to search for a message of which the message flow ID is urn_uuid_003a84aa-b5fe40f5-c9a8-b94805352bfr, the search text entered in the Search field should be as follows.

messageID:urn_uuid_003a84aa-b5fe40f5-c9a8-b94805352bfr
Searching for a message with a specific value for a specific table column.<COLUMN_NAME>:"<COLUMN_VALUE>"

If you need to search for a messages of which the value for the Host column is 192.168.5.184, the search text entered in the Search field should be as follows.
host: "192.168.5.184"
 

Searching for a message by specifying a part of the message flow ID,

messageFlowId:<PART_OF_MESSAGE_FLOW_ID>*

  • If you need to search for a message of which the first part of the message flow ID consist of the characters  urn_uuid_3586f01a-62ab-45fd, the search text entered in the Search field should be as follows.
    urn_uuid_3586f01a-62ab-45fd* 
  • If you need to search for a message of which the first part of the message flow ID consist of the characters  urn_uuid_3586f01a-62ab-45fd, and the request correlation ID is 6dbffc-d9b4-11e6-bf26-cec0c777777, the search text entered in the Search field should be as follows.
    _messageFlowId: urn_uuid*3c6dbffc-d9b4-11e6-bf26-cec0c777777*
Searching for messages by more than one column value.<COLUMN1_NAME>:"<COLUMN1_VALUE>" AND <COLUMN2_NAME>:"<COLUMN2_VALUE>"If you need to search for a message of which the message flow ID is urn_uuid*3c6dbffc-d9b4-11e6-bf26-cec0c777777 AND the component name is LogMediator, the search text entered in the Search field should be as follows.
_messageFlowId: urn_uuid*3c6dbffc-d9b4-11e6-bf26-cec0c777777* AND componentName: LogMediator

...