Azure kusto 无法创建图表
Azure kusto unable to create chart
我得到的错误是
“无法创建该行,因为您缺少以下类型之一的列:整数、长整数、十进制或实数”
这是我的查询“我正在查看图表将显示”随着时间的推移,唯一资源 ID 的数量,聚合时间跨度为 5 米“
syslog_CL
| where data_s contains "Reject"
| where hostname_s contains "Network1"
| where TimeGenerated > ago(1hr)
有什么建议可以添加到查询中以获取时间表吗?
你可以尝试这样的事情:
syslog_CL
| where data_s contains "Reject"
| where hostname_s contains "Network1"
| where TimeGenerated > ago(1hr)
| summarize dcount(_ResourceId) by bin(TimeGenerated, 5m)
| render timechart
我得到的错误是 “无法创建该行,因为您缺少以下类型之一的列:整数、长整数、十进制或实数”
syslog_CL
| where data_s contains "Reject"
| where hostname_s contains "Network1"
| where TimeGenerated > ago(1hr)
有什么建议可以添加到查询中以获取时间表吗?
你可以尝试这样的事情:
syslog_CL
| where data_s contains "Reject"
| where hostname_s contains "Network1"
| where TimeGenerated > ago(1hr)
| summarize dcount(_ResourceId) by bin(TimeGenerated, 5m)
| render timechart