mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import {
|
|
applyFieldOverrides,
|
|
arrayToDataFrame,
|
|
getDefaultTimeRange,
|
|
getProcessedDataFrames,
|
|
LoadingState,
|
|
PanelData,
|
|
} from '@grafana/data';
|
|
import { config } from 'app/core/config';
|
|
|
|
import { SnapshotWorker } from '../../query/state/DashboardQueryRunner/SnapshotWorker';
|
|
import { getTimeSrv } from '../services/TimeSrv';
|
|
import { DashboardModel, PanelModel } from '../state';
|
|
|
|
import { applyPanelTimeOverrides } from './panel';
|
|
|
|
export function loadSnapshotData(panel: PanelModel, dashboard: DashboardModel): PanelData {
|
|
const data = getProcessedDataFrames(panel.snapshotData);
|
|
const worker = new SnapshotWorker();
|
|
const options = { dashboard, range: getDefaultTimeRange() };
|
|
const annotationEvents = worker.canWork(options) ? worker.getAnnotationsInSnapshot(dashboard, panel.id) : [];
|
|
const annotations = [arrayToDataFrame(annotationEvents)];
|
|
const timeData = applyPanelTimeOverrides(panel, getTimeSrv().timeRange());
|
|
|
|
return {
|
|
timeRange: timeData.timeRange,
|
|
state: LoadingState.Done,
|
|
series: applyFieldOverrides({
|
|
data,
|
|
fieldConfig: {
|
|
defaults: {},
|
|
overrides: [],
|
|
},
|
|
replaceVariables: panel.replaceVariables,
|
|
fieldConfigRegistry: panel.plugin!.fieldConfigRegistry,
|
|
theme: config.theme2,
|
|
timeZone: dashboard.getTimezone(),
|
|
}),
|
|
annotations,
|
|
};
|
|
}
|