
Calculate and chart statistics using Splunk Light
Task
Calculate metrics for different hosts.
Searches
These searches start with a search for "error", but you can replace this search with other search terms.
1. Count the number of errors seen on each host.
error | stats count by host
2. Search for outliers. Here, outliers are hosts with a count of errors that is two standard deviations from the mean.
error | stats count by host | eventstats avg(count) as avg_count stdev(count) as std_count | where count>(2*avg_count + std_count)
PREVIOUS Search for errors using Splunk Light |
NEXT Compare week over week results using Splunk Light |
This documentation applies to the following versions of Splunk® Light (Legacy): 7.3.0, 7.3.1, 7.3.2, 7.3.3, 7.3.4, 7.3.5, 7.3.6
Feedback submitted, thanks!