query_ctrl.ts 432 B

1234567891011121314151617
  1. import { QueryCtrl } from 'app/plugins/sdk';
  2. export class InfluxQueryCtrl extends QueryCtrl {
  3. static templateUrl = 'partials/query.editor.html';
  4. resultFormats: any[];
  5. /** @ngInject **/
  6. constructor($scope, $injector) {
  7. super($scope, $injector);
  8. this.resultFormats = [{ text: 'Time series', value: 'time_series' }, { text: 'Table', value: 'table' }];
  9. }
  10. getCollapsedText() {
  11. return this.target.query;
  12. }
  13. }