Hi, I have log like following rid=iqwenoasd service=CP scopes=add-w,oot-s fields=birthdate,emails,identifier issuer=AWS CA TE empty= my expected key-value pairs are like this rid=iqwenoasd
service=CP
scopes=add-w,oot-s
fields=birthdate,emails,identifier
issuer=AWS CA TE
empyt=null since there are some special cases in it (value has space character, value is empty), how can I use REGEX in search servers to achieve that? it seems using ([^=]+)=(.+) doesn't work in transforms.conf [cp_logs_report]
REGEX = ([^=]+)=(.+)
FORMAT = $1::$2 in props.conf [my_sourcetype]
REPORT-cp-logs-ext = cp_logs_report
... View more