mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 06:42:13 +08:00

* graphite-ds: add graphite version to config editor * graphite-ds: modify add-graphite-function to show only version-related functions * graphite-ds: refactor, move func filtering to gfunc.js * graphite-ds: add new functions for graphite 1.0.x * graphite-ds: fix unit tests (add jsonData)
21 lines
544 B
TypeScript
21 lines
544 B
TypeScript
import {GraphiteDatasource} from './datasource';
|
|
import {GraphiteQueryCtrl} from './query_ctrl';
|
|
import {GraphiteConfigCtrl} from './config_ctrl';
|
|
|
|
class GraphiteQueryOptionsCtrl {
|
|
static templateUrl = 'partials/query.options.html';
|
|
}
|
|
|
|
class AnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
GraphiteDatasource as Datasource,
|
|
GraphiteQueryCtrl as QueryCtrl,
|
|
GraphiteConfigCtrl as ConfigCtrl,
|
|
GraphiteQueryOptionsCtrl as QueryOptionsCtrl,
|
|
AnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|
|
|