Reputation: 699
I'm very new to Splunk and wanted to know if the following was possible: I'm trying to set up a dashboard of how many times we had to retry a call to a service. I am currently logging the following text:
number of retries required 0
The number of retries required can vary from 0 to 3
Is there an easy way to query this and display how many times it was either 0, 1, 2 or 3?
Thanks.
Upvotes: 0
Views: 112
Reputation: 2303
The gist of it is that you need to extract that piece of information into a field and than analyze that field according to your wishes (i.e. via timechart
, chart
, stats
, etc.) Here are two different ways:
use the rex
command to extract and define a new field inline.
search * | rex field=_raw ".+retries required (?<retries>\d)$"
Then you can chart them over time by appending | timechart retries
or use the stats
command to do some other calculations.
Upvotes: 3