mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 07:56:56 +00:00
350 lines
8.5 KiB
TypeScript
350 lines
8.5 KiB
TypeScript
|
|
import './CeleryOverviewTable.styles.scss';
|
||
|
|
|
||
|
|
import { LoadingOutlined } from '@ant-design/icons';
|
||
|
|
import { Color } from '@signozhq/design-tokens';
|
||
|
|
import { Progress, Spin, TableColumnsType, Tooltip, Typography } from 'antd';
|
||
|
|
import {
|
||
|
|
getQueueOverview,
|
||
|
|
QueueOverviewResponse,
|
||
|
|
} from 'api/messagingQueues/celery/getQueueOverview';
|
||
|
|
import { isNumber } from 'chart.js/helpers';
|
||
|
|
import { ResizeTable } from 'components/ResizeTable';
|
||
|
|
import { LOCALSTORAGE } from 'constants/localStorage';
|
||
|
|
import useDragColumns from 'hooks/useDragColumns';
|
||
|
|
import { getDraggedColumns } from 'hooks/useDragColumns/utils';
|
||
|
|
import useUrlQuery from 'hooks/useUrlQuery';
|
||
|
|
import { useCallback, useEffect, useMemo, useState } from 'react';
|
||
|
|
import { useMutation } from 'react-query';
|
||
|
|
import { useSelector } from 'react-redux';
|
||
|
|
import { AppState } from 'store/reducers';
|
||
|
|
import { GlobalReducer } from 'types/reducer/globalTime';
|
||
|
|
|
||
|
|
const INITIAL_PAGE_SIZE = 20;
|
||
|
|
|
||
|
|
const showPaginationItem = (total: number, range: number[]): JSX.Element => (
|
||
|
|
<>
|
||
|
|
<Typography.Text className="numbers">
|
||
|
|
{range[0]} — {range[1]}
|
||
|
|
</Typography.Text>
|
||
|
|
<Typography.Text className="total"> of {total}</Typography.Text>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
|
||
|
|
export type RowData = {
|
||
|
|
key: string | number;
|
||
|
|
[key: string]: string | number;
|
||
|
|
};
|
||
|
|
|
||
|
|
function ProgressRender(item: string | number): JSX.Element {
|
||
|
|
const percent = Number(Number(item).toFixed(1));
|
||
|
|
return (
|
||
|
|
<div className="progress-container">
|
||
|
|
<Progress
|
||
|
|
percent={percent}
|
||
|
|
strokeLinecap="butt"
|
||
|
|
size="small"
|
||
|
|
strokeColor={((): string => {
|
||
|
|
const cpuPercent = percent;
|
||
|
|
if (cpuPercent >= 90) return Color.BG_SAKURA_500;
|
||
|
|
if (cpuPercent >= 60) return Color.BG_AMBER_500;
|
||
|
|
return Color.BG_FOREST_500;
|
||
|
|
})()}
|
||
|
|
className="progress-bar"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
function getColumns(data: RowData[]): TableColumnsType<RowData> {
|
||
|
|
if (data?.length === 0) {
|
||
|
|
return [];
|
||
|
|
}
|
||
|
|
|
||
|
|
const tooltipRender = (item: string): JSX.Element => (
|
||
|
|
<Tooltip placement="topLeft" title={item}>
|
||
|
|
{item}
|
||
|
|
</Tooltip>
|
||
|
|
);
|
||
|
|
|
||
|
|
return [
|
||
|
|
{
|
||
|
|
title: 'SERVICE NAME',
|
||
|
|
dataIndex: 'service_name',
|
||
|
|
key: 'service_name',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
width: 200,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.service_name).localeCompare(String(b.service_name)),
|
||
|
|
render: tooltipRender,
|
||
|
|
fixed: 'left',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'SPAN NAME',
|
||
|
|
dataIndex: 'span_name',
|
||
|
|
key: 'span_name',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
width: 200,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.span_name).localeCompare(String(b.span_name)),
|
||
|
|
render: tooltipRender,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'MESSAGING SYSTEM',
|
||
|
|
dataIndex: 'messaging_system',
|
||
|
|
key: 'messaging_system',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
width: 200,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.messaging_system).localeCompare(String(b.messaging_system)),
|
||
|
|
render: tooltipRender,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'DESTINATION',
|
||
|
|
dataIndex: 'destination',
|
||
|
|
key: 'destination',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
render: tooltipRender,
|
||
|
|
width: 200,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.destination).localeCompare(String(b.destination)),
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'KIND',
|
||
|
|
dataIndex: 'kind_string',
|
||
|
|
key: 'kind_string',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
width: 100,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.kind_string).localeCompare(String(b.kind_string)),
|
||
|
|
render: tooltipRender,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'ERROR %',
|
||
|
|
dataIndex: 'error_percentage',
|
||
|
|
key: 'error_percentage',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
width: 200,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.error_percentage).localeCompare(String(b.error_percentage)),
|
||
|
|
render: ProgressRender,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'LATENCY (P95)',
|
||
|
|
dataIndex: 'p95_latency',
|
||
|
|
key: 'p95_latency',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
width: 100,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.p95_latency).localeCompare(String(b.p95_latency)),
|
||
|
|
render: (value: number | string): string => {
|
||
|
|
if (!isNumber(value)) return value.toString();
|
||
|
|
return (typeof value === 'string' ? parseFloat(value) : value).toFixed(3);
|
||
|
|
},
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'THROUGHPUT',
|
||
|
|
dataIndex: 'throughput',
|
||
|
|
key: 'throughput',
|
||
|
|
ellipsis: {
|
||
|
|
showTitle: false,
|
||
|
|
},
|
||
|
|
width: 100,
|
||
|
|
sorter: (a: RowData, b: RowData): number =>
|
||
|
|
String(a.throughput).localeCompare(String(b.throughput)),
|
||
|
|
render: (value: number | string): string => {
|
||
|
|
if (!isNumber(value)) return value.toString();
|
||
|
|
return (typeof value === 'string' ? parseFloat(value) : value).toFixed(3);
|
||
|
|
},
|
||
|
|
},
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
function getTableData(data: QueueOverviewResponse['data']): RowData[] {
|
||
|
|
if (data?.length === 0) {
|
||
|
|
return [];
|
||
|
|
}
|
||
|
|
|
||
|
|
const columnOrder = [
|
||
|
|
'service_name',
|
||
|
|
'span_name',
|
||
|
|
'messaging_system',
|
||
|
|
'destination',
|
||
|
|
'kind_string',
|
||
|
|
'error_percentage',
|
||
|
|
'p95_latency',
|
||
|
|
'throughput',
|
||
|
|
];
|
||
|
|
|
||
|
|
const tableData: RowData[] =
|
||
|
|
data?.map(
|
||
|
|
(row, index: number): RowData => {
|
||
|
|
const rowData: Record<string, string | number> = {};
|
||
|
|
columnOrder.forEach((key) => {
|
||
|
|
const value = row.data[key as keyof typeof row.data];
|
||
|
|
if (typeof value === 'string' || typeof value === 'number') {
|
||
|
|
rowData[key] = value;
|
||
|
|
}
|
||
|
|
});
|
||
|
|
Object.entries(row.data).forEach(([key, value]) => {
|
||
|
|
if (
|
||
|
|
!columnOrder.includes(key) &&
|
||
|
|
(typeof value === 'string' || typeof value === 'number')
|
||
|
|
) {
|
||
|
|
rowData[key] = value;
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
return {
|
||
|
|
...rowData,
|
||
|
|
key: index,
|
||
|
|
};
|
||
|
|
},
|
||
|
|
) || [];
|
||
|
|
|
||
|
|
return tableData;
|
||
|
|
}
|
||
|
|
|
||
|
|
type Filter = {
|
||
|
|
key: {
|
||
|
|
key: string;
|
||
|
|
dataType: string;
|
||
|
|
};
|
||
|
|
op: string;
|
||
|
|
value: string[];
|
||
|
|
};
|
||
|
|
|
||
|
|
type FilterConfig = {
|
||
|
|
paramName: string;
|
||
|
|
operator: string;
|
||
|
|
key: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
function makeFilters(urlQuery: URLSearchParams): Filter[] {
|
||
|
|
const filterConfigs: FilterConfig[] = [
|
||
|
|
{ paramName: 'destination', key: 'destination', operator: 'in' },
|
||
|
|
{ paramName: 'queue', key: 'queue', operator: 'in' },
|
||
|
|
{ paramName: 'kind_string', key: 'kind_string', operator: 'in' },
|
||
|
|
{ paramName: 'service', key: 'service.name', operator: 'in' },
|
||
|
|
{ paramName: 'span_name', key: 'span_name', operator: 'in' },
|
||
|
|
{ paramName: 'messaging_system', key: 'messaging_system', operator: 'in' },
|
||
|
|
];
|
||
|
|
|
||
|
|
return filterConfigs
|
||
|
|
.map(({ paramName, operator, key }) => {
|
||
|
|
const value = urlQuery.get(paramName);
|
||
|
|
if (!value) return null;
|
||
|
|
|
||
|
|
return {
|
||
|
|
key: {
|
||
|
|
key,
|
||
|
|
dataType: 'string',
|
||
|
|
},
|
||
|
|
op: operator,
|
||
|
|
value: value.split(','),
|
||
|
|
};
|
||
|
|
})
|
||
|
|
.filter((filter): filter is Filter => filter !== null);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function CeleryOverviewTable(): JSX.Element {
|
||
|
|
const [tableData, setTableData] = useState<RowData[]>([]);
|
||
|
|
|
||
|
|
const { minTime, maxTime } = useSelector<AppState, GlobalReducer>(
|
||
|
|
(state) => state.globalTime,
|
||
|
|
);
|
||
|
|
|
||
|
|
const { mutate: getOverviewData, isLoading } = useMutation(getQueueOverview, {
|
||
|
|
onSuccess: (data) => {
|
||
|
|
if (data?.payload) {
|
||
|
|
setTableData(getTableData(data?.payload));
|
||
|
|
}
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
const urlQuery = useUrlQuery();
|
||
|
|
const filters = useMemo(() => makeFilters(urlQuery), [urlQuery]);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
getOverviewData({
|
||
|
|
start: minTime,
|
||
|
|
end: maxTime,
|
||
|
|
filters: {
|
||
|
|
items: filters,
|
||
|
|
op: 'AND',
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}, [getOverviewData, minTime, maxTime, filters]);
|
||
|
|
|
||
|
|
const { draggedColumns, onDragColumns } = useDragColumns<RowData>(
|
||
|
|
LOCALSTORAGE.CELERY_OVERVIEW_COLUMNS,
|
||
|
|
);
|
||
|
|
|
||
|
|
const columns = useMemo(
|
||
|
|
() => getDraggedColumns<RowData>(getColumns(tableData), draggedColumns),
|
||
|
|
[tableData, draggedColumns],
|
||
|
|
);
|
||
|
|
|
||
|
|
const handleDragColumn = useCallback(
|
||
|
|
(fromIndex: number, toIndex: number) =>
|
||
|
|
onDragColumns(columns, fromIndex, toIndex),
|
||
|
|
[columns, onDragColumns],
|
||
|
|
);
|
||
|
|
|
||
|
|
const paginationConfig = useMemo(
|
||
|
|
() =>
|
||
|
|
tableData?.length > INITIAL_PAGE_SIZE && {
|
||
|
|
pageSize: INITIAL_PAGE_SIZE,
|
||
|
|
showTotal: showPaginationItem,
|
||
|
|
showSizeChanger: false,
|
||
|
|
hideOnSinglePage: true,
|
||
|
|
},
|
||
|
|
[tableData],
|
||
|
|
);
|
||
|
|
|
||
|
|
const handleRowClick = (record: RowData): void => {
|
||
|
|
console.log(record);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div style={{ width: '100%' }}>
|
||
|
|
<ResizeTable
|
||
|
|
className="celery-overview-table"
|
||
|
|
pagination={paginationConfig}
|
||
|
|
size="middle"
|
||
|
|
columns={columns}
|
||
|
|
dataSource={tableData}
|
||
|
|
bordered={false}
|
||
|
|
loading={{
|
||
|
|
spinning: isLoading,
|
||
|
|
indicator: <Spin indicator={<LoadingOutlined size={14} spin />} />,
|
||
|
|
}}
|
||
|
|
locale={{
|
||
|
|
emptyText: isLoading ? null : <Typography.Text>No data</Typography.Text>,
|
||
|
|
}}
|
||
|
|
scroll={{ x: true }}
|
||
|
|
showSorterTooltip
|
||
|
|
onDragColumn={handleDragColumn}
|
||
|
|
onRow={(record): { onClick: () => void; className: string } => ({
|
||
|
|
onClick: (): void => handleRowClick(record),
|
||
|
|
className: 'clickable-row',
|
||
|
|
})}
|
||
|
|
tableLayout="fixed"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|