Using SEDCMD in props.conf allows raw data to be modified. With the given event below, which option will mask the first three digits of the AcctID field resulting output: [22/Oct/2018:15:50:21] VendorID=1234 Code=B AcctID=xxx5309
Event:
[22/Oct/2018:15:50:21] VendorID=1234 Code=B AcctID=xxx5309
- SEDCMD-1acct = s/VendorID=\d{3}(\d{4})/VendorID=xxx/g
- SEDCMD-xxxAcct = s/AcctID=\d{3}(\d{4})/AcctID=xxx/g
- SEDCMD-1acct = s/AcctID=\d{3}(\d{4})/AcctID=\1xxx/g
- SEDCMD-1acct = s/AcctID=\d{3}(\d{4})/AcctID=xxx\1/g
Display Answer
Next Question