2017-12-21 08:39:31 +01:00
|
|
|
import { PrometheusDatasource } from './datasource';
|
|
|
|
|
import { PrometheusQueryCtrl } from './query_ctrl';
|
2016-02-01 23:24:08 +01:00
|
|
|
|
2016-02-02 15:15:20 +01:00
|
|
|
class PrometheusConfigCtrl {
|
2017-12-21 08:39:31 +01:00
|
|
|
static templateUrl = 'partials/config.html';
|
2016-02-01 23:24:08 +01:00
|
|
|
}
|
|
|
|
|
|
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,
|
2016-02-02 12:52:43 +01:00
|
|
|
PrometheusQueryCtrl as QueryCtrl,
|
2015-10-02 03:19:25 +09:00
|
|
|
PrometheusConfigCtrl as ConfigCtrl,
|
2017-12-21 08:39:31 +01:00
|
|
|
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
2016-02-01 23:24:08 +01:00
|
|
|
};
|