which timefilter do i need to use when querying result in the last 12 hours in azure managed grafana using kql query?

amol bhalerao 1 Reputation point
2022-09-29T12:14:54.153+00:00

how can I get data from the last 12 hours using KQL in azured managed Grafana?
which time Filter do I need to use in Kusto Query?

Azure Managed Grafana
Azure Managed Grafana
An Azure service used to deploy Grafana dashboards for analytics and monitoring solutions.
92 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. SwathiDhanwada-MSFT 18,556 Reputation points
    2022-10-12T06:22:36.413+00:00

    @amol bhalerao Welcome to Microsoft Q & A Community Forum. I understand that you are trying to retrieve results of last 12 hours using KQL query. Below is sample query which shows how to get results of last 12 hours from Azure Activity Table.

    AzureActivity  
    | where  TimeGenerated > now() - 12h  
    

    For more information, refer this document

    0 comments No comments