Hello Ciyaresh, as skochavi noted. Yes, you can do this using the ingest time transform in your DCR.
Here is a step-by-step guide describing the entire process. Collect Windows Firewall Logs and Windows Security logs to Microsoft Sentinel.
And here is the DCR that you want to transform the collected logs and send them to the "SecurityEvent" table. This DCR should be associated to the WEF Server(s) deployed with Azure Arc/AMA.
"dataSources": {
"windowsEventLogs": [
{
"streams": [
"Microsoft-SecurityEvent"
],
"xPathQueries": [
"ForwardedEvents!*[System[(EventID=4624 or EventID=4625 or EventID=4688 or EventID=4672 or EventID=4775 or EventID=4777)]]"
],
"name": "SecurityEventsDataSource"
}
]
},
"dataFlows": [
{
"streams": [
"Microsoft-SecurityEvent"
],
"destinations": [
"la-1107757644"
],
"transformKql": "source | where SubjectUserSid !in ('S-1-5-18', 'S-1-5-19', 'S-1-5-20')",
"outputStream": "Microsoft-SecurityEvent"
}
]