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.pngavikc100_0-1704223892584.png

as example below :

avikc100_1-1704223953548.pngavikc100_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.pngavikc100_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.pngavikc100_0-1704229730075.png

but I want like this 

avikc100_1-1704229760573.pngavikc100_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.pngdtburrows3_0-1704231166492.png

 

0 Karma

avikc100
Path Finder

thank you very much

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Developer Spotlight with Denis Gladkikh

From Splunk Engineer to Kubernetes App Builder Denis GladkikhWhat happens when a lifelong developer turns a ...

Governing Enterprise AI, Bringing Cisco Telemetry Home, and More from Splunk Lantern

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...

Agentic SOC Triage: Investigating Splunk ES Notables with MCP Server and a Local LLM

The Problem: Too Many Alerts, Too Little Context Security operations teams running Splunk Enterprise Security ...