Splunk Search

How to find out Server Uptime & Downtime

jaibalaraman
Path Finder

Hi All 

I am trying to find out Server Up time & Downtime or offline 

However i am using the below command which i am not getting what i want 

| mstats max(System.System_Up_Time) AS "Uptime" WHERE index="permon_metrics" host=system1* BY host span=1m
| dedup host | rex field=host "\w{6}(?<function_abbr>\w{4})"
| search function_abbr=ADDS
| sort Uptime asc
| eval Uptime = round((now() - _time) / (60 * 60), 1)
| search Uptime="4.0"

jaibalaraman_0-1728947682562.png

I would like to see the output in a single tile like HH:MM:SS



Tags (1)
0 Karma

inventsekar
SplunkTrust
SplunkTrust

Hi @jaibalaraman 

You have a field "Uptime" and then using the eval you are calculating the same field. 
Could you pls suggest us with more details, thanks. 

| mstats max(System.System_Up_Time) AS "Uptime" WHERE index="permon_metrics" host=system1* BY host span=1m
| dedup host | rex field=host "\w{6}(?<function_abbr>\w{4})"
| search function_abbr=ADDS
| sort Uptime asc
| eval UptimeNew = round((now() - _time) / (60 * 60), 1) 
| table Uptime UptimeNew function_abbr host

 

thanks and best regards,
Sekar

PS - If this or any post helped you in any way, pls consider upvoting, thanks for reading !
0 Karma

jaibalaraman
Path Finder

jaibalaraman_0-1728951978952.png

 

Sorry what information are you looking for

 

0 Karma

inventsekar
SplunkTrust
SplunkTrust

1) >>> I am trying to find out Server Up time & Downtime or offline 
the logs got a field "Uptime", may i know if the unit is seconds? 

2) how to find out the downtime or offline?

3)  this command will give you number of hours before the logline was received

| eval Uptime = round((now() - _time) / (60 * 60), 1)

 pls suggest us how you like to use this value

4)  may i know why you use the 

| search Uptime="4.0"

 

thanks and best regards,
Sekar

PS - If this or any post helped you in any way, pls consider upvoting, thanks for reading !
0 Karma
Get Updates on the Splunk Community!

Detecting Brute Force Account Takeover Fraud with Splunk

This article is the second in a three-part series exploring advanced fraud detection techniques using Splunk. ...

Buttercup Games: Further Dashboarding Techniques (Part 9)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Buttercup Games: Further Dashboarding Techniques (Part 8)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...