Hints for Kusto Detective Agency - Fabric Special!

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

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。