module.js 509 B

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