1

I have setup log analytics for Azure Key vault and can find the user IPs through this query.

AzureDiagnostics
| summarize count() by CallerIPAddress

But how can I find the activities done by a user(with a username), including the secrets/keys viewed?

Blue Clouds
  • 7,295
  • 4
  • 71
  • 112

1 Answers1

1

You can pass the correct Operation Name and get the results

search * 
| where Category=="AuditEvent"  and OperationName == "SecretGet"
| order by TimeGenerated desc 
Sajeetharan
  • 216,225
  • 63
  • 350
  • 396