Forum Discussion
Shubham150391
Apr 15, 2019Copper Contributor
Issue with log analytics query
I need to write a log analytics query that can find storage account with supportsHttpsTrafficOnly as false. Below is the query that I have formed , but it is giving error: AzureActivity | whe...
- Apr 15, 2019
AzureActivity | where OperationName == "Create/Update Storage Account" | where Properties has '"supportsHttpsTrafficOnly\\":true' | project Properties
That text has a "\" control char, so you need two "\\". Would as where work for you?
CliveWatson
Apr 15, 2019Former Employee
AzureActivity | where OperationName == "Create/Update Storage Account" | where Properties has '"supportsHttpsTrafficOnly\\":true' | project PropertiesThat text has a "\" control char, so you need two "\\". Would as where work for you?