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!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...