Searching a specific time range. The @timestamp field format yyyyMMdd’T’HHmmss.
NOTE: Date and time sections are separated by T
Example:
@timestamp:[2017-04-10T00:00:00 TO 2017-04-11T00:00:00]
NOTE: Operators such as AND, OR, and NOT must be uppercase.
Separate two search terms with AND, search will only return entries that contain both search terms.
Example:
SearchTerm1 AND SearchTerm2
Separate two search terms with OR, search will return entreis that include either search term.
Example:
SearchTerm1 OR SearchTerm2
Using the NOT operator before a search term will exclude results containing the term
NOT SearchTerm1
Nest each Function with ( ) and apply AND/OR/NOT Operators between nested searches
Example:
(SearchTerm1 AND SearchTerm2) OR (SearchTermA AND SearchTermB)
Adding AND @timestamp search to nested search
Example:
(SearchTerm1 AND SearchTerm2) OR (SearchTermA AND SearchTermB) AND @timestamp:[2017-04-10T00:00:00 TO 2017-04-11T00:00:00]