Hi,
I have the following sample of log:
{
"@timestamp": "2021-03-10T17:30:58.899Z",
"@version": "1",
"Actor": [
{
"ID": "Microsoft Intune",
"Type": 1
},
{
"ID": "0000000a-0000-0000-c000-000000000000",
"Type": 2
},
{
"ID": "00000000000000000000000000000000000000000000000000000",
"Type": 2
},
{
"ID": "000000000000000000000000000000000000",
"Type": 2
},
{
"ID": "ServicePrincipal",
"Type": 2
}
],
"ActorContextId": "000000000000000000000000000000000000",
}
And I want to drop all the logs that have "Microsoft Intune" as [Actor][ID].
I tried different ways through filter but nothing worked:
if [Actor.ID] == "Microsoft Intune" { drop{} }
or
if [Actor][ID] == "Microsoft Intune" { drop{} }
or
if "Microsoft Intune" in [Actor.ID] { drop{} }
Someone can help me?
Thanks,
Sara