Splunk Search

How can I concatenate tables from the same search at different time periods ?

Clovisa
Path Finder

Hi, I am trying to compare the top sales of the latest week to the top sales of the previous week.
I am trying to get a table that looks like :

Product   | Rank    | Rank previous week
Table     | 1       | 2
Chair     | 2       | 1

index=sales earliest=-2w latest=-w
| stats count as Sales by Product| sort -Sales
| table Product
| streamstats count as Rank

I succeeded in having the latest rank or the previous rank (see query above) but I don't see how I can combine them. Do you know how I could do this ? Thanks !

Tags (1)
0 Karma
1 Solution

renjith_nair
Legend

Hi @Clovisa,

Try

index=sales earliest=-2w latest=@w|bucket span=1w _time
 |stats count as Sales by Product,_time|sort _time,-count
 |streamstats count as rank by _time
 |sort Product
 |streamstats current=f last(rank) as prev_rank by Product reset_on_change=true|where prev_rank!=""
 |table Product,rank,prev_rank|sort rank
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

Hi @Clovisa,

Try

index=sales earliest=-2w latest=@w|bucket span=1w _time
 |stats count as Sales by Product,_time|sort _time,-count
 |streamstats count as rank by _time
 |sort Product
 |streamstats current=f last(rank) as prev_rank by Product reset_on_change=true|where prev_rank!=""
 |table Product,rank,prev_rank|sort rank
---
What goes around comes around. If it helps, hit it with Karma 🙂

Clovisa
Path Finder

It is perfect, thanks a lot 😄

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...