Reporting

How to create a report that shows percentage change with successful logins per day?

bluescape360
New Member

new splunk user: trying to create a report that shows percentage change with successful logins per day

example: i have a field that shows successful logins, but there are several records in a day, so I do bucket _time span=1d. put all the records in one total number count. How can I show the change for the next day?

day 1 : 60 successful login
day 2: 100 successful login
day 3: 30 successful login

there is a 60% change from day 1 to day2, How can I chart that change? show a percentage?

Tags (2)
0 Karma

Suda
Communicator

Hello,

Could you try to use "streamstats" command?

http://docs.splunk.com/Documentation/Splunk/6.1.2/SearchReference/Streamstats

This is my example search command.

index=_internal sourcetype=splunkd_access
| timechart span=1d count
| streamstats sum(count) AS prev current=f window=1
| eval count / prev * 100 - 100
| table _time count ratio

I hope it helps you.

Happy splunking!

0 Karma

moiezuddin
Explorer

How to find out the no of users who had not login per day

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 ...