| 12345678910111213141516171819 |
- import { PrometheusDatasource } from './datasource';
- import { PrometheusQueryCtrl } from './query_ctrl';
- 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,
- PrometheusQueryCtrl as QueryCtrl,
- PrometheusConfigCtrl as ConfigCtrl,
- PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
- PromQueryField as ExploreQueryField,
- PrometheusStartPage as ExploreStartPage,
- };
|