Reporting

Report results for each hour in a day

kvaga
Explorer

Hello! I have a report and wanna have results for each hour for the last day (last 24 hours).
I.e. it would be like this:

00:00 - 00:59 - result 1
01:00 - 01:59 - result 2
...
23:00-23:59 - result 24

And I have a dashboard where I want to see my 24 last results.
How can I do it?

0 Karma

nvanderwalt_spl
Splunk Employee
Splunk Employee

You can do the following:

|bin _time span=1h
|eval timerange = strftime(_time, "%H:%M - %H:59")
|stats count by timerange
0 Karma

woodcock
Esteemed Legend

You should use timechart span=1h to generate your tabular data and then do | head 24 at the end to only keep the last 24 hours.

0 Karma

dkeck
Influencer

Hi

A good way to get results over time is

|timechart

Something like your search earliest=-24h| timechart span=1h count
Then you can display that as chart or diagram

0 Karma

kvaga
Explorer

My data visualization type is a table. I have a dashbord and want to have there all 24 reports. I.e. a result for each hour

0 Karma

dkeck
Influencer

Can post your search query?

0 Karma
Get Updates on the Splunk Community!

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...

UCC Framework: Discover Developer Toolkit for Building Technology Add-ons

The Next-Gen Toolkit for Splunk Technology Add-on Development The Universal Configuration Console (UCC) ...

.conf25 Community Recap

Hello Splunkers, And just like that, .conf25 is in the books! What an incredible few days — full of learning, ...