forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
658 B
22 lines
658 B
import { DataSourcePlugin } from '@grafana/data';
|
|
import { TestDataDataSource } from './datasource';
|
|
import { TestInfoTab } from './TestInfoTab';
|
|
import { ConfigEditor } from './ConfigEditor';
|
|
import { QueryEditor } from './QueryEditor';
|
|
|
|
class TestDataAnnotationsQueryCtrl {
|
|
annotation: any;
|
|
constructor() {}
|
|
static template = '<h2>Annotation scenario</h2>';
|
|
}
|
|
|
|
export const plugin = new DataSourcePlugin(TestDataDataSource)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setQueryEditor(QueryEditor)
|
|
.setAnnotationQueryCtrl(TestDataAnnotationsQueryCtrl)
|
|
.addConfigPage({
|
|
title: 'Setup',
|
|
icon: 'list-ul',
|
|
body: TestInfoTab,
|
|
id: 'setup',
|
|
});
|
|
|