grep to Searching with Sumo Cheat Sheet
I've used grep for a long time, how can I do things on Sumo?
Searching across multiple servers and aggregating the results is where the power of Sumo really lies. This cheat sheet can make it easier for you to move from greping logs to more in-depth querying with Sumo Logic.
We recommend that search your data using the _sourceCategory metadata tag, but you’ll see that the examples below use the _sourceName metadata tag because _sourceName should reflect the full canonical path of the file, which is typically what you use when greping files. You should still follow the seven search rules to live by.
grep Command Line |
Sumo Equivalent |
Description |
|
|
Returns the contents of a file named log_file for a specific timeframe. In Sumo, you must paginate through the results, but you can also search for ALL log files across your stack which share the same name. |
|
|
Returns all log lines containing the term "string" (case insensitive) in a file named log_file. |
|
|
Returns all log lines containing the word "string" (case insensitive) in a file that starts with "log_" in its name. |
|
|
Returns all log lines containing the term "literal_string" (case sensitive) in a file named log_file. |
|
|
Using regex, returns all events where a particular pattern is present on the log line. |
|
|
Finds all words which match the term "string" in a file named "log_file". Notice the spaces around string. |
|
No equivalent operation. |
Returns the log events 3 lines after the line which included the term "example". While there is no query language equivalent operation, you can search surrounding messages. |
|
No equivalent operation. |
Returns the log events 3 lines before the line which included the term "example". While there is no query language equivalent operation, you can search surrounding messages. |
|
No equivalent operation. |
Returns the log events 3 lines before and after the line which included the term "example". While there is no query language equivalent operation, you can search surrounding messages. |
|
|
Returns all files and events within a specific server which include the term “string”. Notice the _sourceHost metadata tag is used to hone in on a single server. |
|
|
Count the number of lines which match the term "string". |
|
|
Returns only the log events where the term "string" was not found. |
|
|
Returns only the file names where the term "string" was found. |
|
|
Returns only the part of the log event which matches my search term. |