Oh I answered my own question....
I was going about it incorrectly, I needed to use SEDCMD rather than a transform. SEDCMD is also way easier and more straightforward but took a bit to get the syntax correct.
The pipe's in the input were throwing me off, needed to escape them with a backslash
replace top|otherClass|
with just top|
in all locations in the event (g)
s/top\|otherClass\|/top\|/g
Be sure you understand that this applies to _raw so make sure your match is specific and only ever matches that string. this is why i made sure to include the top| parameter. hopefully these don't move around arbitrarily 🙂
props.conf (on the indexer and search head--honestly not sure which worked)
[ActiveDirectory]
SEDCMD-fixObjectClass = s/top\|otherClass\|/top\|/g
... View more