-
Notifications
You must be signed in to change notification settings - Fork 87
SearchEvents
Screenshots below show search toolbar:
In Search field you can specify the text you are looking for. The found text in details view is marked in yellow. Following search methods are provided:
- String contains
- Regex
- Query search
'String contaions' mode compares whether the message log contains the provided text (case insensitive).
'Regex mode' test whether the message log matches provided regular expression (case insensitive).
'Query' mode is using SQL-like query language (i.e. level>=warning && msg~=failed && thread==t1) to find log events.
Supported filed identifiers
- LOGGER
- LEVEL
- CLASS
- FILE
- LINE
- METHOD
- MSG/MESSAGE
- NDC
- EXCEPTION -- remove
- TIMESTAMP/DATE
- THREAD //Logsource?
- MARK
- NOTE
PROP.[name](key.md)
NOTE: To build expressions using PROP (properties) field identifier, the key being evaluated must be added after the field identifier and a period PROP keys are case sensitive. PROP.server is not equivalent to PROP.SERVER
Supported operators:
- == equals
- ~= case-insensitive partial-text match
- != not equals
- LIKE supports regular expressions
- EXISTS not null
- < inequality operators
- <=
-
-
=
- && logical and
- || logical or
- ! logical not
Date formatts //TODO
Expression shortcut: Since it is very common need to perform a case-insensitive partial-text match against the Message field, any single word or any single phrase (the phrase must be delimited by single-quote marks) will act as a rule defined using the MSG ~= syntax.
Example: to search the Message field for the phrase 'logged in', instead of defining the expression MSG ~= 'logged in', use 'logged in' by itself (including the single quotes). Instead of using MSG ~= evaluation to search for the word 'evaluation', use evaluation by itself (no need for single quotes since it's a single word).
NOTE: This shortcut syntax is designed to be used to search for single words or phrases only, and will not work when used in combination with other operators or expressions. When building complex expressions, use the MSG ~= syntax. Operator limitations:
Inequality operators are supported for Levels (LEVEL > info) and anything that can be converted to a numeric value (including timestamps). In order to build expressions using the Timestamp field, provide the Timestamp value in this format: 'yyyy-MM-dd HH:mm:ss'. Note the single ticks, which are required because of the space between the days and hours. The Timestamp field contains millisecond information, but the milliseconds are rounded off during event evaluation.
Examples:
- date<'2012-02-22 19:35:43' -> events before 2012-02-22 19:35:43
- (date>'2012-02-22 19:35:43' || msg~=import) && !(class~=Parser) -> events after 2012-02-22 19:35:43 or message contains string "import", but class name do not contains string Parser
- mark==true -> marked events
- mark==Aqua -> marked with color Aqua
Search box has the following shortcuts:
- Enter - search next
- Alt+enter - search previous
- Ctrl+enter - mark all found events
If you want to mark your search result you can:
- Select option Mark search result and perform the search. The result events are marked.
- Enter the text you want to search and click on Mark all found. All matching events are marked. You can also select the marking color.
Other search related actions:
- Search the next event
- Search the previous event
- Go to the next marked event or with note
- Go to the previous marked event or with note
- Go to the next event with level Info or higher
- Go to the next event with level Warning or higher
- Go to the next event with level Severe
- Go to the previous event with level Info or higher
- Go to the previous event with level Warning or higher
- Go to the previous event with level Severe or higher
- Introduction
- Installation
- Opening logs
- Log parsers
- Searching for events
- Marking events
- Notes
- Filters
- Log events message detail formatters and colorizers
- Jump to code - Integration with IDE
- Saving and loading log investigation
- HotKeys
- Batch processing
- DevelopingPlugins
- Developing on OtrosLogViewer
- Experimental features
- Limitations
- Video
- Used by
- DonateAndDonors