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/cloud-monitoring/tracking.ts

25 lines
1.0 KiB

import { reportInteraction } from '@grafana/runtime';
/**
* Loaded the first time a dashboard containing Cloudmonitoring queries is loaded (not on every render)
* Note: The queries used here are the ones pre-migration and pre-filterQuery
*/
export const trackCloudMonitoringDashboardLoaded = (props: CloudMonitoringDashboardLoadedProps) => {
reportInteraction('grafana_ds_cloudmonitoring_dashboard_loaded', props);
};
export type CloudMonitoringDashboardLoadedProps = {
grafana_version?: string;
dashboard_id: string;
org_id?: number;
/** number of non hidden queries of type TimeSeriesQuery (MQL) if any */
mql_queries: number;
/** number of non hidden queries of type TimeSeriesFilter (Builder) if any */
time_series_filter_queries: number;
/** number of non hidden queries of type SLO if any */
slo_queries: number;
/** number of non hidden queries of type annotation if any */
annotation_queries: number;
/** number of non hidden queries of type PromQL if any */
promQL_queries: number;
};