mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
20 lines
642 B
TypeScript
20 lines
642 B
TypeScript
import { PrometheusDatasource } from './datasource';
|
|
import { PrometheusQueryCtrl } from './query_ctrl';
|
|
import { PrometheusConfigCtrl } from './config_ctrl';
|
|
|
|
import PrometheusStartPage from './components/PromStart';
|
|
import PromQueryField from './components/PromQueryField';
|
|
|
|
class PrometheusAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
PrometheusDatasource as Datasource,
|
|
PrometheusQueryCtrl as QueryCtrl,
|
|
PrometheusConfigCtrl as ConfigCtrl,
|
|
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
PromQueryField as ExploreQueryField,
|
|
PrometheusStartPage as ExploreStartPage,
|
|
};
|