活动
你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ACSAuthIncomingOperations 表的查询
有关在 Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅查询。
返回身份验证操作和版本对的所有不同组合。
ACSAuthIncomingOperations
| distinct OperationName, OperationVersion
| limit 100
计算每个身份验证操作的第 90、95 和 99 个百分位数(以毫秒为单位)。 可以针对单个操作或其他百分位数自定义它。
ACSAuthIncomingOperations
// where OperationName == "<operation>" // This can be uncommented and specified to calculate only a single operation's duration percentiles
| summarize percentiles(DurationMs, 90, 95, 99) by OperationName, OperationVersion // calculate 90th, 95th, and 99th percentiles of each Operation
| limit 100
对于每个身份验证操作,提取调用该操作最多的 5 个 IP 地址。
ACSAuthIncomingOperations
// | where OperationName == "<operation>" // This can be uncommented and specified to calculate only a single operation's count
| top-nested of OperationName by dummy=max(0), // For all the Operations...
top-nested 5 of CallerIpAddress by count() // List the IP address that have called that operation the most
| project-away dummy // Remove dummy line from the result set
| limit 100
列出按近期性排序的每个身份验证错误。
ACSAuthIncomingOperations
| where ResultType == "Failed"
| project TimeGenerated, OperationName, OperationVersion, ResultSignature, ResultDescription
| order by TimeGenerated desc
| limit 100
对于每个身份验证操作,计数返回结果的类型。
ACSAuthIncomingOperations
| summarize Count = count() by OperationName, ResultType //, ResultSignature // This can also be uncommented to determine the count of each ResultSignature for each ResultType
| order by OperationName asc, Count desc
| limit 100
其他资源
培训
认证
Microsoft Certified: Security Operations Analyst Associate - Certifications
使用 Microsoft Sentinel、Microsoft Defender for Cloud 和 Microsoft 365 Defender 调查、搜索和缓解威胁。
文档
-
ACSCallDiagnostics 的示例日志表查询 - Azure Monitor
ACSCallDiagnostics 日志表的示例查询
-
Azure Monitor 日志参考 - ACSCallDiagnostics - Azure Monitor
Azure Monitor 日志中 ACSCallDiagnostics 表的参考。
-
ACSBillingUsage 的示例日志表查询 - Azure Monitor
ACSBillingUsage 日志表的示例查询