skip to Main Content

Azure – Kusto (KQL), How to pivot event rows that are grouped into single lines (by user and day), including event start and end times?

I hope somebody can help me with a tricky Kusto query. I have the following dataset, which contains events raised by user, where events are represented with event code: datatable(CreatedDate:datetime, User:string, EventCode:string) [ datetime(4-22-2024 12:44:02.750 PM), "user1", "TS", datetime(4-23-2024 4:09:30.551…

VIEW QUESTION

Azure custom indicator

I have a mental block and canĀ“t figure this one out. In Azure Application Insights I have this custom table. I am trying to create an index of actual work. The table has this "event" column where you can have…

VIEW QUESTION

Azure – Multiple toint check

I have this query to check the application version AppInventory_CL | extend AppVersion_s_Dyn = split(AppVersion_s, '.') | extend Versione = iif(toint(AppVersion_s_Dyn[0]) >= 5 and toint(AppVersion_s_Dyn[1]) >= 2 and toint(AppVersion_s_Dyn[2]) >= 7, 'OK', 'KO') But I need that also superior versions…

VIEW QUESTION
Back To Top
Search