79677876

Date: 2025-06-24 15:59:03
Score: 1.5
Natty:
Report link

You need to use project before the render to select just the columns you want to appear in the chart

| project timestamp, duration

so in full would be:

availabilityResults
| where timestamp > ago(24h) //set the time range
| where name == "sitename" //set the monitor name 
| project timestamp, duration
| render areachart with (xcolumn=duration,ycolumns=timestamp)

https://learn.microsoft.com/en-us/kusto/query/tutorials/learn-common-operators?view=microsoft-fabric#select-a-subset-of-columns

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Smock