How should Kusto query on count be adjusted to show the results with correct sequential sorting by 'name' - alphabetical sorting is not appropriate here, as actual sequence of 'name' values is Step F -> Step W -> Step B, etc. Seems that I should map 'name' to extended column "Number" with smth like <Step F == 1, Step W == 2,...> and then add sorting by this column.
timestamp name count
=== ========= ====
01/01/2020, 12:00:00.000 AM Step W 55
01/01/2020, 12:00:00.000 AM Step B 44
01/01/2020, 12:00:00.000 AM Step F 33
01/01/2020, 12:00:00.000 AM Step D 10
Please help adjusting the query:
tablename
| where name == "Step D"
or name == "Step F"
or name == "Step B"
or name == "Step W"
| summarize count() by name, bin(timestamp, 1d)