in the same situation, how can I change de index for each remote indexer? For example, ops_index for ops and dev_index for dev, as follow: props.conf: [custom:access_combined]
TRANSFORMS-routing=devRouting,devIndex
TRANSFORMS-routing1=opsRouting,opsIndex transforms: [devRouting]
REGEX= .
DEST_KEY=_TCP_ROUTING
FORMAT=devGroup
[opsRouting]
REGEX= <put the regex to select & identify the data that you want to send to the ops indexer>
DEST_KEY=_TCP_ROUTING
FORMAT=opsGroup
[devIndex]
REGEX=.
DEST_KEY=_MetaData:Index
FORMAT=dev_index
[opsIndex]
REGEX=.
DEST_KEY=_MetaData:Index
FORMAT=ops_index
is right?
... View more