Splunk Search

event count comparison with today vs yesterday vs last week vs prior week

john_q
Explorer

Hi,
I have two strings like "opend" and "exited" in the events. So i need to count how many opened and exited today and that should be comparing today with yesterday vs last week vs prior week in the the form of line chart. legends should be like -Today-opened, -Today-exited,Yesterday-opened,Yesterday-exited and last week and prior week as well. Can you please help me.

Tags (1)
0 Karma

sandeepmakkena
Contributor
| multisearch 
     [ search index=****  "opend" earliest=-2w@w1 latest=-w@w1
     | eval what="prior week-opened"] 
     [search index=****  "exited" earliest=-2w@w1 latest=-w@w1
     | eval what="prior week-exited" ]
 [ search index=****  "opend" earliest=-w@w1 latest=@w1
     | eval what="prior week-opened"] 
     [search index=****  "exited" earliest=-w@w1 latest=@w1
     | eval what="last week-exited" ]
 [ search index=****  "opend" earliest=-1d@d latest=@d
     | eval what="last Yesterday-opened"] 
     [search index=****  "exited" earliest=-1d@d latest=@d
     | eval what="prior Yesterday-exited" ]
 [ search index=****  "opend" earliest=@d latest=+d@d
     | eval what="-Today-opened"] 
     [search index=****  "exited" earliest=@d latest=+d@d
     | eval what="-Today-exited" ]
 | chart count by date_hour what

check this.
0 Karma

pramit46
Contributor

Have you tried timewrap command?

john_q
Explorer

comparing the count using line chart time span=h??

0 Karma

yannK
Splunk Employee
Splunk Employee
0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...