Hi,
I have recently noticed that Google Workspace module uses @metadata.id
instead of @metadata._id
. It leads to duplicate appearance in logs.
Changing this:
var addID = new processor.Fingerprint({
fields: [
"json.id.time",
"json.id.uniqueQualifier",
"json.id.applicationName",
"json.id.customerId",
],
target_field: "@metadata.id",
ignore_missing: true,
fail_on_error: false,
});
to this:
var addID = new processor.Fingerprint({
fields: [
"json.id.time",
"json.id.uniqueQualifier",
"json.id.applicationName",
"json.id.customerId",
],
target_field: "@metadata._id",
ignore_missing: true,
fail_on_error: false,
});
should fix the problem.