I want to add custom namespace for each customer id in CrowdStrike parser. We are ingesting logs from different customer ids from single feed as all the customer ids are belongs to same client. How can I add namespace?
For example:
if [cid] == "xxxxxxxxxxx" {
mutate {
replace => {
"event.idm.read_only_udm.metadata.base_labels.namespaces" => "example1"
}
}
if [cid] == "yyyyyyyyyyyy" {
mutate {
replace => {
"event.idm.read_only_udm.metadata.base_labels.namespaces" => "example2"
}
}


