mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
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());
|