mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
15 lines
392 B
TypeScript
15 lines
392 B
TypeScript
import './query_parameter_ctrl';
|
|
import { QueryCtrl } from 'app/plugins/sdk';
|
|
|
|
export class CloudWatchQueryCtrl extends QueryCtrl {
|
|
static templateUrl = 'partials/query.editor.html';
|
|
|
|
aliasSyntax: string;
|
|
|
|
/** @ngInject */
|
|
constructor($scope, $injector) {
|
|
super($scope, $injector);
|
|
this.aliasSyntax = '{{metric}} {{stat}} {{namespace}} {{region}} {{<dimension name>}}';
|
|
}
|
|
}
|