Forum Discussion
JMSHW0420
Aug 01, 2023Iron Contributor
RE: Sign-in activity when trying to access a Storage Account
What is the most effective KQL query for looking at sign-in activity trying to access a Storage Account from a specific IP address?
2 Replies
Sort By
- raphaelcustodiosoaresIron Contributor
SigninLogs | where AppDisplayName == "Azure Storage" | where IPAddress == "x.x.x.x" // Replace 'x.x.x.x' with the specific IP address you want to filter for | project TimeGenerated, UserPrincipalName, AppDisplayName, IPAddress, Status, LocationDetails
If you liked, please click for vote.
Thank you!
- cyb3rmik3Iron Contributor
Hi JMSHW0420,
maybe this guide could help?
How to query Azure Storage logs in Azure Monitor Log Analytics | Azure Tips and Tricks - YouTube
If I have answered your question, please mark your post as Solved
If you like my response, please consider giving it a like