Splunk Search

How to use append on stats table to show count past 5 minutes?

brianMiller94
Engager

Hello,

I am trying to show the last 5 minute count with a larger time period spark chart.

index="iis"
|stats sparkline count by host
|append [search index="iis" earliest=-5m latest=now 
|stats count by host as "last_5"]
|rename host as "Web Server"
|rename sparkline as "Count Over Time"
|rename "last_5" as "Count Last 5 Minutes"
|table "Web Server", "Count Over Time", "Count Last 5 Minutes"

The last column is blank but the subsearch returns the expected data.

0 Karma
1 Solution

somesoni2
Revered Legend

Give this a try

index="iis"
| eval last5m=if(_time>=relative_time(now(),"-5m"),1,0)
 |stats sparkline as  "Count Over Time" sum(last5m) as "Count Last 5 Minutes" by host
 |rename host as "Web Server"
 |table "Web Server", "Count Over Time", "Count Last 5 Minutes"

View solution in original post

somesoni2
Revered Legend

Give this a try

index="iis"
| eval last5m=if(_time>=relative_time(now(),"-5m"),1,0)
 |stats sparkline as  "Count Over Time" sum(last5m) as "Count Last 5 Minutes" by host
 |rename host as "Web Server"
 |table "Web Server", "Count Over Time", "Count Last 5 Minutes"

brianMiller94
Engager

Worked great, thank you!

0 Karma
Get Updates on the Splunk Community!

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...