Splunk Search

how to report based on date

avikc100
Path Finder

I am getting the count of each interface, but I need it date wise

avikc100_0-1704223892584.png

as example below :

avikc100_1-1704223953548.png


please help to modify my query

Labels (2)
0 Karma

avikc100
Path Finder

@dtburrows3 

this query showing date &time haphazardly, how to sort it like 1/4/2024, 1/3/2024, 1/2/2024....

index="*" source="*" |eval
timestamp=strftime(_time, "%m/%d/%Y")
| chart limit=30
count as count
over DFOINTERFACE
by timestamp


avikc100_0-1704369551739.png

 




0 Karma

dtburrows3
Builder

Assuming that your events have proper timestamps extracted to the _time field you should be able to do this.

 

 

source="/apps/WebMethods/IntegrationServer/instances/default/logs/DFO.log"
    | timechart limit=30 span=1d 
        count as count 
            by DFOINTERFACE

 

 

0 Karma

avikc100
Path Finder

Hi @dtburrows3 

its giving different result. I just want in reverse direction
its giving me like this :

avikc100_0-1704229730075.png

but I want like this 

avikc100_1-1704229760573.png

 

0 Karma

dtburrows3
Builder

You can try this to get the report in that format.

Edit: Noticed that the chart method could mess up the order of dates from left to right so I think sorting first and then doing a transpose should fix it.

 

 

 

 

 

source="/apps/WebMethods/IntegrationServer/instances/default/logs/DFO.log"
    | timechart span=1d limit=30
        count as count
            by DFOINTERFACE
    | sort 0 +_time
    | eval
        timestamp=strftime(_time, "%m/%d/%Y")
    | fields + timestamp, *
    | fields - _*
    | transpose 30 header_field=timestamp
    | rename
        column as "DFOINTERFACE \ Date"

 

 

 

 

 

Example from my local instance.

dtburrows3_0-1704231166492.png

 

0 Karma

avikc100
Path Finder

thank you very much

0 Karma
Get Updates on the Splunk Community!

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...

New Articles from Academic Learning Partners, Help Expand Lantern’s Use Case Library, ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...