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

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...