mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Datasource Plugins: Allow tracking for configuration usage (#72650)
Datasource Plugins: Allow tracking for configuration usage
This commit is contained in:
@@ -54,7 +54,13 @@ export type DashboardLoadedEventPayload<T> = {
|
||||
export class DashboardLoadedEvent<T> extends BusEventWithPayload<DashboardLoadedEventPayload<T>> {
|
||||
static type = 'dashboard-loaded';
|
||||
}
|
||||
|
||||
export class DataSourceUpdatedSuccessfully extends BusEventBase {
|
||||
static type = 'datasource-updated-successfully';
|
||||
}
|
||||
export class DataSourceTestSucceeded extends BusEventBase {
|
||||
static type = 'datasource-test-succeeded';
|
||||
}
|
||||
|
||||
export class DataSourceTestFailed extends BusEventBase {
|
||||
static type = 'datasource-test-failed';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user