mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 13:42:09 +08:00

* Fixes under public/app/plugins * Fixes under public/app/plugins/datasource * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/components * Fix PanelNotSupported test * Fix one more warning * Fix warning in usePanelSave * Fix traceview empty response * Azure monitor fixes * More fixes * Fix tests for azure monitor * Fixes after merging master * Add comment for disabled rules * Fixes after merging master * Fixes after merging master * Adress review comments * Fix azure tests * Address review feedbacks
23 lines
650 B
TypeScript
23 lines
650 B
TypeScript
import React from 'react';
|
|
import { PanelProps } from '@grafana/data';
|
|
import { Options } from './types';
|
|
import { NodeGraph } from '@grafana/ui';
|
|
import { useLinks } from '../../../features/explore/utils/links';
|
|
|
|
export const NodeGraphPanel: React.FunctionComponent<PanelProps<Options>> = ({ width, height, data }) => {
|
|
const getLinks = useLinks(data.timeRange);
|
|
if (!data || !data.series.length) {
|
|
return (
|
|
<div className="panel-empty">
|
|
<p>No data found in response</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div style={{ width, height }}>
|
|
<NodeGraph dataFrames={data.series} getLinks={getLinks} />
|
|
</div>
|
|
);
|
|
};
|