- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
No applying pipeline in Edge Processor
adrifesa95
Engager
04-23-2024
03:48 AM
Good morning
I am receiving events from windows on a collector with Splunk Edge Processor and it is sending them correctly to the tenant but not to the correct index.
According to the data it goes through the pipeline but sends it to the main instead of the index:
This is the spl2 of the pipeline:
/* A valid SPL2 statement for a pipeline must start with "$pipeline", and include "from $source" and "into $destination". */ $pipeline = | from $source | eval index = if(isnull(index), "usa_windows", index) | into $destination;
