Getting Data In

How to run a search of data in one index and update data in another index if the certain parameters are met

BrandSentiment
Explorer

I would like to run a search of data in one index and update data in another index if the certain parameters are met.

Index1 holds semi-static data for user profiles. The index2 is holds streaming data coming in from the comments stream. What I would like to do is update the profile data interests field by adding football as an interest if the comment stream contains "football" .

Can I run a query against a username along these lines:

if index=index2 username= username AND comment.content="football" THEN index=index1 username= username ADD football to username.interest

I am sure there is a better way of doing this and really appreciate any help anyone could give.

Thank you

0 Karma

MuS
Legend

Hi BrandSentiment,

take a look at the collect command http://docs.splunk.com/Documentation/Splunk/6.1.4/SearchReference/Collect
This will put the search result into the specified index. So running somehting like this should do the job:

index=index2 username=username AND comment.content="football" | colect index=index1

Hope this helps ...

cheers, MuS

0 Karma
Get Updates on the Splunk Community!

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...