Knowledge Management

How to summary index data in a saved search scheduled to run every hour to a particular index based on a attribute in a saved search?

rmuraly
Explorer

I have a saved search that returns me the following event data :

Event 1 :
source=TRDF_1453, Filed1=TEST_DATA, Field2=TEST_D1, Field3=Test_D3

Event 2 :
source=TRDF_1494, Filed1=TEST_DATA, Field2=TEST_D1, Field3=Test_D3

Event 3 :
source=TRDF_1453, Filed1=TEST_DATA, Field2=TEST_D1, Field3=Test_D3

In the scenario above summary indexing this saved search should
1. move Event 1 and Event 3 to index gn_data_TRDF_X
2. move Event 2 to index gn_data_TRDF_Y

I make this decision based on 'source' field. If 'source' matches move them to under one index.

Is there any way I can do this in Splunk?

0 Karma

somesoni2
Revered Legend

Create two summary index searches, one looking for source=TRDF_1453 and summary indexing to gn_data_TRDF_X index, other one looking for source=TRDF_1494 and summary indexing to gn_data_TRDF_Y index.

0 Karma

rmuraly
Explorer

This is the approach I am currently taking .. but Can this be done using one single summary index and dynamically choose the index to summary index?

0 Karma

somesoni2
Revered Legend

I got one untested approach. Update your summary index search like this. Do remember to remove summary index option from saved search as we're doing it using collect command in search.

your current search 
| appendpipe [| where source="TRDF_1453" | collect index="gn_data_TRDF_X" sourcetype="ST You want to use"]
| appendpipe [| where source="TRDF_1494" | collect index="gn_data_TRDF_Y" sourcetype="ST You want to use"]
0 Karma

rmuraly
Explorer

yeup. This works for me.

0 Karma
Get Updates on the Splunk Community!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...