The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/plugins/datasource/grafana-azure-monitor-datas.../tracking.ts

37 lines
1.7 KiB

import { reportInteraction } from '@grafana/runtime';
/**
* Loaded the first time a dashboard containing azure queries is loaded (not on every render)
* Note: The queries used here are the ones pre-migration and pre-filterQuery
*
* This allows answering questions about:
* - the adoption of the three query types (Azure Monitor, Azure Logs Analytics and Azure Resource Graph)
* - stats about number of azure dashboards loaded, number of users
* - stats about the grafana and plugins versions used by our users
*
* Dashboard: https://ops.grafana.net/d/Ad0pti0N/data-sources-adoption-tracking?orgId=1
* Changelog:
* - v9.1.0 : list of queries logged
* - v9.1.2 : list removed in favour of stats, user_id removed
*/
export const trackAzureMonitorDashboardLoaded = (props: AzureMonitorDashboardLoadedProps) => {
reportInteraction('grafana_ds_azuremonitor_dashboard_loaded', props);
};
export type AzureMonitorDashboardLoadedProps = {
grafana_version?: string;
dashboard_id: string;
org_id?: number;
/** number of non hidden queries of type Azure Monitor if any */
azure_monitor_queries: number;
/** number of non hidden queries of type Azure Logs Analytics if any */
azure_log_analytics_queries: number;
/** number of non hidden queries of type Azure Resource Graph if any */
azure_resource_graph_queries: number;
/** number of hidden queries (not executed) of type Azure Monitor if any */
azure_monitor_queries_hidden: number;
/** number of hidden queries (not executed) of type Azure Logs Analytics if any */
azure_log_analytics_queries_hidden: number;
/** number of hidden queries (not executed) of type Azure Resource Graph if any */
azure_resource_graph_queries_hidden: number;
};