Splunk Search

How to get stats by hour and calculate percentage for each hour?

bijodev1
Communicator

Hi There,

I am trying to get the an hourly stats for each status code and get the percentage for each hour per status. Not sure how to get it.

my search | 
| bucket _time span=1h
| stats count by _time http_status_code
| eventstats sum(count) as totalCount | eval percentage=round((count/totalCount),3)*100

please suggest which command could be helpful here. 

thanks

Labels (4)
Tags (3)
0 Karma
1 Solution

somesoni2
SplunkTrust
SplunkTrust

Give this a try

my_search
| bucket _time span=1h
| stats count BY _time http_status_code
| eventstats sum(count) as totalCount by _time
| eval percentage=round((count/totalCount),3)*100
| table _time http_status_code count percentage

View solution in original post

bijodev1
Communicator

@somesoni2 thank you for the help, it worked.

0 Karma

somesoni2
SplunkTrust
SplunkTrust

Give this a try

my_search
| bucket _time span=1h
| stats count BY _time http_status_code
| eventstats sum(count) as totalCount by _time
| eval percentage=round((count/totalCount),3)*100
| table _time http_status_code count percentage

gcusello
SplunkTrust
SplunkTrust

Hi @bijodev1,

please try this:

my_search
| eventstats sum(count) as totalCount 
| bucket _time span=1h
| stats values(totalCount) AS totalCount count BY _time http_status_code
| eval percentage=round((count/totalCount),3)*100

Ciao.

Giuseppe

0 Karma

bijodev1
Communicator

what I am basically looking for here is 

_time                                 status                           count                                percentage

12:30.                                 100                                 400.                                        30

12:30                                  200                                 600                                         60

12:30                                  300                                 400                                         30

01:30                                  100                                  100                                         10

01:30                                  200                                  400                                          45

01:30                                  300                                  400                                          45

 

like wise

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @bijodev1,

please try this:

my_search
| eventstats count as totalCount 
| bucket _time span=1h
| stats values(totalCount) AS totalCount count BY _time http_status_code
| eval percentage=round((count/totalCount),3)*100

Ciao.

Giuseppe

0 Karma

bijodev1
Communicator

Hi @gcusello 

thank you for the response, but didn't got me any output. 

It doesn't show the percentage and total count per hour

0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...