@splunkmaguYeah, I believe increasing the LOOKAHEAD is probably better since the extraction is already in use, and wouldn't impact the events less than 4k. For data already ingested, the Coalesce function can be used to resolve events to a common view during search time if needed. An example with a few fields: index=<aws_index> sourcetype=aws:cloudwatch:guardduty | eval TITLE =coalesce('detail.title',title), ACCOUNT_ID = coalesce('detail.accountId',accountId), FINDING_TYPE = coalesce(findingType,'detail.type') | table _time, TITLE, ACCOUNT_ID, FINDING_TYPE NOTE: The single quotes for json fields matter in the coalesce function.
... View more