REST endpoint for querying in log traces (kusto based)
Do anyone here know if there exists a REST endpoint for querying in log traces (kusto based) like this sample:
traces
| where timestamp > ago(60m)
| parse message with xx “instance=” instance “,” yy
| summarize [‘instances’] = dcount(instance) by bin(timestamp, 60sec)
It works in Azure portal but I would like to execute the query programmatically and not through a UI.
/kristian
Do anyone here know if there exists a REST endpoint for querying in log traces (kusto based) like this sample: traces| where timestamp > ago(60m)| parse message with xx “instance=” instance “,” yy| summarize [‘instances’] = dcount(instance) by bin(timestamp, 60sec) It works in Azure portal but I would like to execute the query programmatically and not through a UI. /kristian Read More