I have an use case in which for every event/data-input that reaches the Splunk server, certain fields need to be parsed out and a HTTP call triggered with the parsed parameters in the real-time non-window'd mode. What is the appropriate way to achieve that.
Splunk Version used: 6.x
Thanks in Advance.
Hi thebosshere,
regarding the first part of your use case, this is no problem in Splunk. You can either setup index time field extraction or search time field extraction to get your needed fields.
The next part of your use case could be tricky; because this is not really Splunk related, but a question of how this remote HTTP call should be triggered on the remote system.
You can setup a real-time alert, which searches for your events and fires a script on every match.
Maybe this can be of help for you: http://wiki.splunk.com/Community:Use_Splunk_alerts_with_scripts_to_create_a_ticket_in_your_ticketing...
cheers, MuS
Hi thebosshere,
regarding the first part of your use case, this is no problem in Splunk. You can either setup index time field extraction or search time field extraction to get your needed fields.
The next part of your use case could be tricky; because this is not really Splunk related, but a question of how this remote HTTP call should be triggered on the remote system.
You can setup a real-time alert, which searches for your events and fires a script on every match.
Maybe this can be of help for you: http://wiki.splunk.com/Community:Use_Splunk_alerts_with_scripts_to_create_a_ticket_in_your_ticketing...
cheers, MuS
Thanks MuS. Yes used your suggestion as starting point. That helped.
take the wiki link as example not as solution for your use case 😉 Just create a real-time alert that fires a script each time it gets a hit on your events. What that script should do is up to the remote / receiving system....
Thanks MuS. When I go through the wiki link, it mentions "saved search". Does this mean the Real time stream cant be accessed directly by the script? Newbie to this area, so my doubts may be completely wrong.