Kusto: data tables and current time
When creating a datatable in kusto the following won’t work for getting now
datatable (t: datetime) [
now()
]
However you can do the following. Unfortuantely actually doing math on dates is a pain.
datatable (t: datetime) [
datetime(now)
]