module.js 492 B

1234567891011121314151617181920
  1. define([
  2. './datasource',
  3. ],
  4. function (PromDatasource) {
  5. 'use strict';
  6. function metricsQueryEditor() {
  7. return {controller: 'PrometheusQueryCtrl', templateUrl: 'public/app/plugins/datasource/prometheus/partials/query.editor.html'};
  8. }
  9. function configView() {
  10. return {templateUrl: 'public/app/plugins/datasource/prometheus/partials/config.html'};
  11. }
  12. return {
  13. Datasource: PromDatasource,
  14. metricsQueryEditor: metricsQueryEditor,
  15. configView: configView,
  16. };
  17. });