Visualization authentication Methods Used
Description
This visualisation shows the authentication methods that have been used based on the selected TimeFrame.
Query · kql
let TimeFrame = 30d; SigninLogs | where TimeGenerated > ago(TimeFrame) | where ResultType == 0 | summarize Total = count() by AuthenticationProtocol, bin(TimeGenerated, 1d)