美文网首页
Hints for Kusto Detective Agency

Hints for Kusto Detective Agency

作者: rikuruto | 来源:发表于2025-03-10 10:54 被阅读0次

Link

  1. Welcome part. Just check the dashboard and the missing bus is there.
  2. Case1
BusTelemetryHistory
| extend BusState=Properties.BusState
| where BusState == "Arrived"
| extend Delay=datetime_diff("second",Timestamp,ScheduleTime)
| where StationNumber ==0
| summarize TotalDelay=sum(Delay) by BusLine
  1. Case2
BusTelemetryHistory
| extend BusState=Properties.BusState
| where BusState == "Arrived"
| extend Delay=datetime_diff("second",Timestamp,ScheduleTime)
| summarize AveDelay=avg(Delay) by BusLine

点赞过百发布更多Case

相关文章

网友评论

      本文标题:Hints for Kusto Detective Agency

      本文链接:https://www.haomeiwen.com/subject/dfjymjtx.html