mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Add phlare datasource * Rename * Add parca * Add self field to parca * Make sure phlare works with add to dashboard flow * Add profiling category and hide behind feature flag * Update description and logos * Update phlare icon * Cleanup logging * Clean up logging * Fix for shift+enter * onRunQuery to set label * Update type naming * Fix lint * Fix test and quality issues Co-authored-by: Joey Tawadrous <joey.tawadrous@grafana.com>
11 lines
429 B
TypeScript
11 lines
429 B
TypeScript
import { DataSourcePlugin } from '@grafana/data';
|
|
|
|
import { ConfigEditor } from './ConfigEditor';
|
|
import { QueryEditor } from './QueryEditor/QueryEditor';
|
|
import { FireDataSource } from './datasource';
|
|
import { Query, FireDataSourceOptions } from './types';
|
|
|
|
export const plugin = new DataSourcePlugin<FireDataSource, Query, FireDataSourceOptions>(FireDataSource)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setQueryEditor(QueryEditor);
|