mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* WIP prometheus editor same in panel * Dont use panel in plugin editors * prettiered modified files * Fix step in external link * Prevent exiting edit mode when slate suggestions are shown * Blur behavior and $__interval variable * Remove unused query controller * Basic render test * Chore: Fixes blacklisted import * Refactor: Adds correct start and end time
20 lines
652 B
TypeScript
20 lines
652 B
TypeScript
import { PrometheusDatasource } from './datasource';
|
|
import { PromQueryEditor } from './components/PromQueryEditor';
|
|
import { PrometheusConfigCtrl } from './config_ctrl';
|
|
|
|
import PrometheusStartPage from './components/PromStart';
|
|
import PromQueryField from './components/PromQueryField';
|
|
|
|
class PrometheusAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
PrometheusDatasource as Datasource,
|
|
PromQueryEditor as QueryEditor,
|
|
PrometheusConfigCtrl as ConfigCtrl,
|
|
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
PromQueryField as ExploreQueryField,
|
|
PrometheusStartPage as ExploreStartPage,
|
|
};
|