kusto trendlines

jonassamuelsson

Jonas Samuelsson

Posted on February 2, 2024

kusto trendlines

I recently stumbled upon an example for how to include "trendlines" in kusto queries that might be handy.

exceptions
| where timestamp > ago(90d)
| summarize c = log(count()) by bin(timestamp, 1d)
| as hint.materialized=true T
| extend _perc_25 = toscalar(T | summarize percentile(c, 25)),
         _perc_50 = toscalar(T | summarize percentile(c, 50)),
         _perc_75 = toscalar(T | summarize percentile(c, 75))
| render timechart
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
jonassamuelsson
Jonas Samuelsson

Posted on February 2, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

kusto trendlines
kusto kusto trendlines

February 2, 2024