7 lines
279 B
TypeScript
7 lines
279 B
TypeScript
import { PanelPlugin } from '@grafana/data';
|
|
|
|
import { FlameGraphPanel } from './FlameGraphPanel';
|
|
import { FlameGraphSuggestionsSupplier } from './suggestions';
|
|
|
|
export const plugin = new PanelPlugin(FlameGraphPanel).setSuggestionsSupplier(new FlameGraphSuggestionsSupplier());
|