/** The plugin version (especially interesting in external plugins - core plugins are aligned with grafana version) */
/** The plugin version (especially interesting in external plugins - core plugins are aligned with grafana version) */
plugin_version?: string;
plugin_version?: string;
/** The URL that points to the edit page for the datasoruce. We are using this to be able to distinguish between the performance of different datasource edit locations. */
/** The URL path that points to the page where the event was triggered. We are using this to be able to distinguish between the performance of different datasource edit locations. */
editLink?: string;
path?: string;
};
};
/**
/**
@ -53,6 +53,6 @@ type DataSourceTestedProps = {
plugin_version?: string;
plugin_version?: string;
/** Whether or not the datasource test succeeded = the datasource was successfully configured */
/** Whether or not the datasource test succeeded = the datasource was successfully configured */
success: boolean;
success: boolean;
/** The URL that points to the edit page for the datasoruce. We are using this to be able to distinguish between the performance of different datasource edit locations. */
/** The URL path that points to the page where the event was triggered. We are using this to be able to distinguish between the performance of different datasource edit locations. */