Dashboards & Visualizations

How to plot sums from a multisearch over time

cindygibbs_08
Communicator

Hi Everyone I hope everyone is having a great day 

 

I need to calculate the sum over two different indexes and then plot it by week or month... I have been trying to do the following :

1) first I calculate the total sum of my interest suing this SPL

| multisearch
[ | search index=TRAVELS AND STATUS IN ("OK", "CHECKED", "ABORD") AND CLIENT_TYPE="vip" AND ID=*
| fields ID]
[ | search index=tv_int_ang AND STATUS IN ("BOOKED", "CHECKED", "IN_DEPT") AND corp="vip" AND crop_id=*
| fields corp ]
| stats dc(ID) as VIP_CX dc(crop_id) VIP_CORP 
| eval total=VIP_CX+VIP_CORP

but I would like to have that total plot over time by month and week I have tried the timechart function but it naver gives me what I want I know I am the one doing it wrong...  I'd like to know what would be the proper way to have "total" calculated by month or week without truncating the data... thank you so much to everyone willing to help me out

 

Kindly,

Cindy

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Assuming you have a _time field in both indexes, you should bucket/bin the time into the timespan you are interested in and then do the stats by the time field.

| multisearch
[ | search index=TRAVELS AND STATUS IN ("OK", "CHECKED", "ABORD") AND CLIENT_TYPE="vip" AND ID=*
| fields ID]
[ | search index=tv_int_ang AND STATUS IN ("BOOKED", "CHECKED", "IN_DEPT") AND corp="vip" AND corp_id=*
| fields corp ]
| bin _time span=1mon
| stats dc(ID) as VIP_CX dc(corp_id) as VIP_CORP by _time
| eval total=VIP_CX+VIP_CORP

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

Assuming you have a _time field in both indexes, you should bucket/bin the time into the timespan you are interested in and then do the stats by the time field.

| multisearch
[ | search index=TRAVELS AND STATUS IN ("OK", "CHECKED", "ABORD") AND CLIENT_TYPE="vip" AND ID=*
| fields ID]
[ | search index=tv_int_ang AND STATUS IN ("BOOKED", "CHECKED", "IN_DEPT") AND corp="vip" AND corp_id=*
| fields corp ]
| bin _time span=1mon
| stats dc(ID) as VIP_CX dc(corp_id) as VIP_CORP by _time
| eval total=VIP_CX+VIP_CORP
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...