Splunk Search

Volume end of each day

EH
Explorer

Hi community, using Splunk for a ~month now and need some help,

 

If done correctly, I have the realtime volume/depot. Now I need the volume/depot at the end of each day last month. I'm stuck here, hope anyone can help me out.

 

index=BLA
| eventstats latest(status) as END_status by order_id
| search END_status IN
(
"Product Arrived at Final Depot"
"Processing Order at Depot"
"Ready for Transit to Final Depot"
"Processing Order for Client Delivery"
"Product Ready for Client Delivery"
"Ready for Transit to Nearest Depot"
)
| where status=END_status
| lookup products.csv product_id OUTPUT length, width, depth
| eval "volume"=round(length*width*depth/1000000,2)
| stats sum(volume) as "volume in m3" by depot_id

 

Labels (4)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Change this

| stats sum(volume) as "volume in m3" by depot_id

to

| bin span=1d _tme
| stats sum(volume) as "volume in m3" by depot_id, _time

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

Change this

| stats sum(volume) as "volume in m3" by depot_id

to

| bin span=1d _tme
| stats sum(volume) as "volume in m3" by depot_id, _time

EH
Explorer

With this tho, I would still search on just that day. I need to take the last month in account as well.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Set the query time to cover the last month, or whatever time period you want the daily volumes from

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!

Index This | What travels the world but is also stuck in place?

April 2026 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...