Member since
01-10-2017
4
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2053 | 03-30-2017 05:24 AM |
03-30-2017
05:24 AM
@Raghav Ramakrishann Probably related to https://issues.apache.org/jira/browse/NIFI-3349 If someone restarts your Splunk Search Head, Nifi will not re-authenticate.
... View more
03-30-2017
05:14 AM
@Jeremy Dyer I understand how a global replacement works, but am struggling when I just want to replace certain occurrences. Let's say my Flowfile looks like this: xyz key=AABBBBCC foo bar AABBBBCC Another one looks like this: xyz key=DDEEEEFF foo bar DDEEEEFF I only want to replace the values that are prepended by key= I tried with Regular Expression key=(\S+) and Matching Group 1 , which didn't work. What did work was setting the Regex to key=(AABBBBCC|DDEEEEFF), but this unfortunately makes the regex static.
... View more
03-30-2017
04:58 AM
@Alex K IMHO the best way, to send data to Splunk is through the HTTP Event Collector. I'm using the AttributeToJSON processor to create a JSON file with an Attribute List of host, sourcetype, source, event The JSON file is then sent to HEC using the InvokeHTTP processor. Works like a charm 🙂
... View more