2022-10-20 08:20:48 -05:00
|
|
|
import { css } from '@emotion/css';
|
2022-10-07 05:39:14 -05:00
|
|
|
import React, { useEffect, useMemo, useState } from 'react';
|
|
|
|
import { useMeasure } from 'react-use';
|
|
|
|
|
2022-10-20 08:20:48 -05:00
|
|
|
import { DataFrame, DataFrameView, CoreApp } from '@grafana/data';
|
|
|
|
import { useStyles2 } from '@grafana/ui';
|
2022-10-07 05:39:14 -05:00
|
|
|
|
2022-10-20 08:20:48 -05:00
|
|
|
import { MIN_WIDTH_TO_SHOW_BOTH_TOPTABLE_AND_FLAMEGRAPH, PIXELS_PER_LEVEL } from '../constants';
|
2022-10-07 05:39:14 -05:00
|
|
|
|
|
|
|
import FlameGraph from './FlameGraph/FlameGraph';
|
|
|
|
import { Item, nestedSetToLevels } from './FlameGraph/dataTransform';
|
|
|
|
import FlameGraphHeader from './FlameGraphHeader';
|
|
|
|
import FlameGraphTopTableContainer from './TopTable/FlameGraphTopTableContainer';
|
|
|
|
import { SelectedView } from './types';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
data: DataFrame;
|
2022-10-20 08:20:48 -05:00
|
|
|
app: CoreApp;
|
|
|
|
// Height for flame graph when not used in explore.
|
|
|
|
// This needs to be different to explore flame graph height as we
|
|
|
|
// use panels with user adjustable heights in dashboards etc.
|
|
|
|
flameGraphHeight?: number;
|
2022-10-07 05:39:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const FlameGraphContainer = (props: Props) => {
|
|
|
|
const [topLevelIndex, setTopLevelIndex] = useState(0);
|
|
|
|
const [rangeMin, setRangeMin] = useState(0);
|
|
|
|
const [rangeMax, setRangeMax] = useState(1);
|
|
|
|
const [search, setSearch] = useState('');
|
|
|
|
const [selectedView, setSelectedView] = useState(SelectedView.Both);
|
|
|
|
const [sizeRef, { width: containerWidth }] = useMeasure<HTMLDivElement>();
|
|
|
|
|
|
|
|
// Transform dataFrame with nested set format to array of levels. Each level contains all the bars for a particular
|
|
|
|
// level of the flame graph. We do this temporary as in the end we should be able to render directly by iterating
|
|
|
|
// over the dataFrame rows.
|
|
|
|
const levels = useMemo(() => {
|
|
|
|
if (!props.data) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
const dataView = new DataFrameView<Item>(props.data);
|
|
|
|
return nestedSetToLevels(dataView);
|
|
|
|
}, [props.data]);
|
|
|
|
|
2022-10-20 08:20:48 -05:00
|
|
|
const styles = useStyles2(() => getStyles(props.app, PIXELS_PER_LEVEL * levels.length));
|
|
|
|
|
2022-10-07 05:39:14 -05:00
|
|
|
// If user resizes window with both as the selected view
|
|
|
|
useEffect(() => {
|
|
|
|
if (
|
|
|
|
containerWidth > 0 &&
|
|
|
|
containerWidth < MIN_WIDTH_TO_SHOW_BOTH_TOPTABLE_AND_FLAMEGRAPH &&
|
|
|
|
selectedView === SelectedView.Both
|
|
|
|
) {
|
|
|
|
setSelectedView(SelectedView.FlameGraph);
|
|
|
|
}
|
|
|
|
}, [selectedView, setSelectedView, containerWidth]);
|
|
|
|
|
|
|
|
return (
|
2022-10-20 08:20:48 -05:00
|
|
|
<div ref={sizeRef} className={styles.container}>
|
2022-10-07 05:39:14 -05:00
|
|
|
<FlameGraphHeader
|
2022-10-20 08:20:48 -05:00
|
|
|
app={props.app}
|
2022-10-07 05:39:14 -05:00
|
|
|
setTopLevelIndex={setTopLevelIndex}
|
|
|
|
setRangeMin={setRangeMin}
|
|
|
|
setRangeMax={setRangeMax}
|
|
|
|
search={search}
|
|
|
|
setSearch={setSearch}
|
|
|
|
selectedView={selectedView}
|
|
|
|
setSelectedView={setSelectedView}
|
|
|
|
containerWidth={containerWidth}
|
|
|
|
/>
|
|
|
|
|
|
|
|
{selectedView !== SelectedView.FlameGraph && (
|
|
|
|
<FlameGraphTopTableContainer
|
|
|
|
data={props.data}
|
2022-10-20 08:20:48 -05:00
|
|
|
app={props.app}
|
2022-10-07 05:39:14 -05:00
|
|
|
totalLevels={levels.length}
|
|
|
|
selectedView={selectedView}
|
|
|
|
search={search}
|
|
|
|
setSearch={setSearch}
|
|
|
|
setTopLevelIndex={setTopLevelIndex}
|
|
|
|
setRangeMin={setRangeMin}
|
|
|
|
setRangeMax={setRangeMax}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{selectedView !== SelectedView.TopTable && (
|
|
|
|
<FlameGraph
|
|
|
|
data={props.data}
|
2022-10-20 08:20:48 -05:00
|
|
|
app={props.app}
|
|
|
|
flameGraphHeight={props.flameGraphHeight}
|
2022-10-07 05:39:14 -05:00
|
|
|
levels={levels}
|
|
|
|
topLevelIndex={topLevelIndex}
|
|
|
|
rangeMin={rangeMin}
|
|
|
|
rangeMax={rangeMax}
|
|
|
|
search={search}
|
|
|
|
setTopLevelIndex={setTopLevelIndex}
|
|
|
|
setRangeMin={setRangeMin}
|
|
|
|
setRangeMax={setRangeMax}
|
|
|
|
selectedView={selectedView}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-10-20 08:20:48 -05:00
|
|
|
const getStyles = (app: CoreApp, height: number) => ({
|
|
|
|
container: css`
|
|
|
|
height: ${app === CoreApp.Explore ? height + 'px' : '100%'};
|
|
|
|
`,
|
|
|
|
});
|
|
|
|
|
2022-10-07 05:39:14 -05:00
|
|
|
export default FlameGraphContainer;
|