Is there a way to arg_max over multiple non-string columns in Kusto?
In Kusto, arg_max takes an expression and returns the selected columns from the row which maximizes it. What’s the best way to get it (or an equivalent expression) to maximize the value of one column then another, then return the matching row?
KQL downtime calculation
Here is the KQL table in which I am trying to calculate downtime between the current trolley_start timestamp and the previous trolley_end timestamp for each associate.
KQL downtime calculation
Here is the KQL table in which I am trying to calculate downtime between the current trolley_start timestamp and the previous trolley_end timestamp for each associate.
Kusto Query replace the timestamp of duplicate rows
I have following have the table with two rows per cart_id. for each secon row I want to replace Trolley_Start timestamp with the Begin_Picking timestamp and for each first row I want to replace Trolley_End timestamp with the End_Picking timestamp using Kusto Query language. Some guidance or help will be appriciated.
Kusto Query replace the timestamp of duplicate rows
I have following have the table with two rows per cart_id. for each secon row I want to replace Trolley_Start timestamp with the Begin_Picking timestamp and for each first row I want to replace Trolley_End timestamp with the End_Picking timestamp using Kusto Query language. Some guidance or help will be appriciated.
Restrictions on User Defined Functions: Unresolved reference binding
I’m trying to understand if it is possibe to extend a new column with the output of a user defined function.
KQL Query for Calculation of ErrorDuration within Timespan
I was hoping to get some help writing a kusto query, to summarize errors across a timespan into bins.
Remove extra line from Kusto linechart
As a result of this SO post I had a kql script that creates a linechart. I added more rows to the data datatable and now a line connects the largest Stage_Num values. I’m still learning everything kusto and trying to research the ‘Series’ keyword (there is not much out there), but I didn’t expect that line to appear. How can I alter my query to get rid of that line?
Defining external table kind as delta
As per this Microsoft blog an external table can be defined as delta.
Display lines & values for whole range of y-axis values in Kusto linechart
I have a kql script that queries the table (csv format) at bottom and creates the line chart here: