mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
FlameGraph: Use pyroscope/flamegraph (#65896)
This commit is contained in:
@@ -3,8 +3,7 @@ import React from 'react';
|
||||
|
||||
import { DataFrame, GrafanaTheme2, CoreApp } from '@grafana/data';
|
||||
import { useStyles2 } from '@grafana/ui';
|
||||
|
||||
import FlameGraphContainer from '../../plugins/panel/flamegraph/components/FlameGraphContainer';
|
||||
import { FlameGraphTopWrapper } from 'app/plugins/panel/flamegraph/components/FlameGraphTopWrapper';
|
||||
|
||||
interface Props {
|
||||
dataFrames: DataFrame[];
|
||||
@@ -15,7 +14,7 @@ export const FlameGraphExploreContainer = (props: Props) => {
|
||||
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<FlameGraphContainer data={props.dataFrames[0]} app={CoreApp.Explore} />
|
||||
<FlameGraphTopWrapper data={props.dataFrames[0]} app={CoreApp.Explore} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user