Splunk Search

Spl query for host downtime consolidation

Harikiranjammul
New Member

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
New Member

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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...