2017-12-21 08:39:31 +01:00
|
|
|
import { PrometheusDatasource } from './datasource';
|
2019-06-24 08:42:08 +02:00
|
|
|
import { PromQueryEditor } from './components/PromQueryEditor';
|
2018-03-12 13:53:05 +09:00
|
|
|
import { PrometheusConfigCtrl } from './config_ctrl';
|
2016-02-01 23:24:08 +01:00
|
|
|
|
2019-09-16 07:17:34 +02:00
|
|
|
import PromCheatSheet from './components/PromCheatSheet';
|
2018-10-09 19:46:31 +02:00
|
|
|
import PromQueryField from './components/PromQueryField';
|
|
|
|
|
|
2015-10-02 03:19:25 +09:00
|
|
|
class PrometheusAnnotationsQueryCtrl {
|
2017-12-21 08:39:31 +01:00
|
|
|
static templateUrl = 'partials/annotations.editor.html';
|
2015-10-02 03:19:25 +09:00
|
|
|
}
|
|
|
|
|
|
2016-02-01 23:24:08 +01:00
|
|
|
export {
|
|
|
|
|
PrometheusDatasource as Datasource,
|
2019-06-24 08:42:08 +02:00
|
|
|
PromQueryEditor as QueryEditor,
|
2015-10-02 03:19:25 +09:00
|
|
|
PrometheusConfigCtrl as ConfigCtrl,
|
2017-12-21 08:39:31 +01:00
|
|
|
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
2018-10-30 14:38:34 +01:00
|
|
|
PromQueryField as ExploreQueryField,
|
2019-09-16 07:17:34 +02:00
|
|
|
PromCheatSheet as ExploreStartPage,
|
2016-02-01 23:24:08 +01:00
|
|
|
};
|