Splunk Search

Spl query for host downtime consolidation

Harikiranjammul
Explorer

I have a data like below

Servename     downtime

Web1               7 day 2 h

Web2                2 h 23 min

Web2               20 min

Web3.               17 min

 

Have  severname and downtime fields. Servernames can be same with different donwtime available.

 

How can I group this by servename by adding the downtimes in to single row of per server. Help us with spl query

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Is the downtime already / previously available as a numeric e.g. number of seconds? If not, you would have to convert it to a numeric by parsing the string into its constituent parts and multiply until you have the number of seconds. You can then use stats with the sum aggregation function to calculate the total downtime for each host.

0 Karma

Harikiranjammul
Explorer

Hi

 

I don't have the numeric field.

Any quick suggestion on converting this type of string to numeric field?

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| rex field=downtime "((?<day>\d+)\sday\s?)?((?<hour>\d+)\sh\s?)?((?<minute>\d+)\smin\s?)?"
| fillnull value=0 day hour minute
| eval duration=((((day * 24) + hour) * 60) + minute) * 60
0 Karma
Get Updates on the Splunk Community!

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

 Prepare to elevate your security operations with the powerful upgrade to Splunk Enterprise Security 8.x! This ...

Get Early Access to AI Playbook Authoring: Apply for the Alpha Private Preview ...

Passionate about security automation? Apply now to our AI Playbook Authoring Alpha private preview ...

Reduce and Transform Your Firewall Data with Splunk Data Management

Managing high-volume firewall data has always been a challenge. Noisy events and verbose traffic logs often ...