Files
grafana/public/app/plugins/datasource/prometheus/module.ts

18 lines
464 B
TypeScript
Raw Normal View History

import {PrometheusDatasource} from './datasource';
import {PrometheusQueryCtrl} from './query_ctrl';
class PrometheusConfigCtrl {
static templateUrl = 'partials/config.html';
}
2015-10-02 03:19:25 +09:00
class PrometheusAnnotationsQueryCtrl {
2016-02-10 11:42:59 +09:00
static templateUrl = 'partials/annotations.editor.html';
2015-10-02 03:19:25 +09:00
}
export {
PrometheusDatasource as Datasource,
PrometheusQueryCtrl as QueryCtrl,
2015-10-02 03:19:25 +09:00
PrometheusConfigCtrl as ConfigCtrl,
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
};