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

18 lines
468 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 {
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,
};