Splunk Search

Volume end of each day

EH
Engager

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
Engager

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
Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...