Splunk Search

Over a week's timespan, how do I display how many restarts are happening per day on a host?

orchapellico
Explorer

I am getting a bunch of nulls in my results and I'm not sure why. I am trying to build a graph that will show over a business week how many times a server is restarted. Then display is by day and host, on which days with a proper count.

host="" "Server startup" | chart count by host, date_wday

Is there a better way? I was trying to do it with the timechart command, but i'm running into problems there.

Tags (1)
0 Karma
1 Solution

Vijeta
Influencer

You can use below query-

 host="" "Server startup"| eval day=strftime(_time, "%A")| chart count by host day

View solution in original post

0 Karma

Vijeta
Influencer

You can use below query-

 host="" "Server startup"| eval day=strftime(_time, "%A")| chart count by host day
0 Karma

orchapellico
Explorer

Thank you, this is exactly what I was looking for.

0 Karma

akocak
Contributor
host="" "Server startup" | chart count by host, date_wday usenull=false

However, If I were you, I would try to find another variable like "restart time" and use dc. also this may do it

...| timechart count by host span=1d usenull=false

Also this would do it:

host="" "Server startup" | bin _time span=1d| stats count by _time, host
0 Karma

Vijeta
Influencer

Do your events have date_wday field. Looks like the events dont have this field that's why resulting into NULL.

0 Karma

orchapellico
Explorer

They are not all showing up at null, that is what is throwing me off. If there is another way to do this, I would like to know. Thank you for your thoughts.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...