module.ts 546 B

1234567891011121314151617
  1. import {PrometheusDatasource} from './datasource';
  2. import {PrometheusQueryCtrl} from './query_ctrl';
  3. class PrometheusConfigCtrl {
  4. static templateUrl = 'public/app/plugins/datasource/prometheus/partials/config.html';
  5. }
  6. class PrometheusAnnotationsQueryCtrl {
  7. static templateUrl = 'public/app/plugins/datasource/prometheus/partials/annotations.editor.html';
  8. }
  9. export {
  10. PrometheusDatasource as Datasource,
  11. PrometheusQueryCtrl as QueryCtrl,
  12. PrometheusConfigCtrl as ConfigCtrl,
  13. PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
  14. };