Knowledge Management

Switch indexes to create a report for today and the previous 6 days?

vijaykumartcs
Explorer

I want to create report for last 7 days data, which should take last 6 days data from the summary index and for today's data it should take other index, by Switch Indexes.

is there a possibility?

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi vijaykumartcs,
use append to add events from your second index to the result from summary index:

| tstats count FROM your_summary_index GROUPBY field1, field2, field3
| append [search your_index earliest="-d@d" latest=now]
| table field1, field2, field3

using -7d@d and -d@d as earliest and latest in main search.
Bye.
Giuseppe

0 Karma

vijaykumartcs
Explorer

can i use the same command for dashboards to.. i have created a dashboard with 6 panel's, with last 7days time frame for transaction's count between the A-b, B-c, C-D applications, daily more than 1lakh + transactions are flowing , now i want to use summary index for improving the performance.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi vijaykumartcs,
I'm not sure to have understood your request.
Using the same logic: instead table you can use the calculations and elaboration to have the output you want.
Bye.
Giuseppe

0 Karma

rjthibod
Champion

Yes it is. It requires using append, join, union, or some other SPL command to combine the result sets together.

Can you share more information about how you search the data and what transforms you are applying to get the final result? The more you share, the more likely the community can give you a very detailed answer.

0 Karma
Get Updates on the Splunk Community!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...