In my environment, as for the "csv" data to be captured,
The column that is not needed is dropped using SEDCMD.
For example, the following example excludes the third column "description".
example
Data
time,ipaddress,description
YYYY/mm/dd HH:MM:SS,192.x.x.x,this is ...
YYYY/mm/dd HH:MM:SS,172.x.x.x,this is ...
YYYY/mm/dd HH:MM:SS,10.x.x.x,this is ...
props.conf
SEDCMD-test = s/([^,]*),([^,]*),([^,]*)/\1,\2/g
When searching, it seems that the third column "description" was excluded from the displayed raw event.
But in the field list, "description" exists, and the field values corresponding to each event also remained as data.
As for the order of processing, I think that SEDCMD will move first than license calculation.
However, at the time of searching, it seemed that the data of the excluded column was captured, so I thought that the usage of licenses would not change.
Will I can reduce license usage by the SEDCMD exclusion?
... View more