mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-12 18:41:32 +08:00

* fix: export table panel * fix: create generate link helper --------- Co-authored-by: Vishal Sharma <makeavish786@gmail.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
531 lines
13 KiB
TypeScript
531 lines
13 KiB
TypeScript
import { Tabs, TabsProps } from 'antd';
|
|
import TabLabel from 'components/TabLabel';
|
|
import { AVAILABLE_EXPORT_PANEL_TYPES } from 'constants/panelTypes';
|
|
import {
|
|
initialAutocompleteData,
|
|
initialFilters,
|
|
initialQueriesMap,
|
|
initialQueryBuilderFormValues,
|
|
PANEL_TYPES,
|
|
} from 'constants/queryBuilder';
|
|
import { queryParamNamesMap } from 'constants/queryBuilderQueryNames';
|
|
import { DEFAULT_PER_PAGE_VALUE } from 'container/Controls/config';
|
|
import ExportPanel from 'container/ExportPanel';
|
|
import GoToTop from 'container/GoToTop';
|
|
import LogsExplorerChart from 'container/LogsExplorerChart';
|
|
import LogsExplorerList from 'container/LogsExplorerList';
|
|
import LogsExplorerTable from 'container/LogsExplorerTable';
|
|
import { SIGNOZ_VALUE } from 'container/QueryBuilder/filters/OrderByFilter/constants';
|
|
import TimeSeriesView from 'container/TimeSeriesView/TimeSeriesView';
|
|
import { useUpdateDashboard } from 'hooks/dashboard/useUpdateDashboard';
|
|
import { addEmptyWidgetInDashboardJSONWithQuery } from 'hooks/dashboard/utils';
|
|
import { LogTimeRange } from 'hooks/logs/types';
|
|
import { useCopyLogLink } from 'hooks/logs/useCopyLogLink';
|
|
import { useGetExplorerQueryRange } from 'hooks/queryBuilder/useGetExplorerQueryRange';
|
|
import { useQueryBuilder } from 'hooks/queryBuilder/useQueryBuilder';
|
|
import useAxiosError from 'hooks/useAxiosError';
|
|
import { useNotifications } from 'hooks/useNotifications';
|
|
import useUrlQueryData from 'hooks/useUrlQueryData';
|
|
import { getPaginationQueryData } from 'lib/newQueryBuilder/getPaginationQueryData';
|
|
import { memo, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { AppState } from 'store/reducers';
|
|
import { Dashboard } from 'types/api/dashboard/getAll';
|
|
import { ILog } from 'types/api/logs/log';
|
|
import {
|
|
IBuilderQuery,
|
|
OrderByPayload,
|
|
Query,
|
|
TagFilter,
|
|
} from 'types/api/queryBuilder/queryBuilderData';
|
|
import { DataSource, StringOperators } from 'types/common/queryBuilder';
|
|
import { GlobalReducer } from 'types/reducer/globalTime';
|
|
import { generateExportToDashboardLink } from 'utils/dashboard/generateExportToDashboardLink';
|
|
|
|
import { ActionsWrapper } from './LogsExplorerViews.styled';
|
|
|
|
function LogsExplorerViews(): JSX.Element {
|
|
const { notifications } = useNotifications();
|
|
const history = useHistory();
|
|
|
|
const { activeLogId, timeRange, onTimeRangeChange } = useCopyLogLink();
|
|
const { queryData: pageSize } = useUrlQueryData(
|
|
queryParamNamesMap.pageSize,
|
|
DEFAULT_PER_PAGE_VALUE,
|
|
);
|
|
|
|
const { minTime } = useSelector<AppState, GlobalReducer>(
|
|
(state) => state.globalTime,
|
|
);
|
|
|
|
const currentMinTimeRef = useRef<number>(minTime);
|
|
|
|
// Context
|
|
const {
|
|
currentQuery,
|
|
stagedQuery,
|
|
panelType,
|
|
updateAllQueriesOperators,
|
|
updateQueriesData,
|
|
redirectWithQueryBuilderData,
|
|
} = useQueryBuilder();
|
|
|
|
// State
|
|
const [page, setPage] = useState<number>(1);
|
|
const [logs, setLogs] = useState<ILog[]>([]);
|
|
const [requestData, setRequestData] = useState<Query | null>(null);
|
|
|
|
const handleAxisError = useAxiosError();
|
|
|
|
const listQuery = useMemo(() => {
|
|
if (!stagedQuery || stagedQuery.builder.queryData.length < 1) return null;
|
|
|
|
return stagedQuery.builder.queryData.find((item) => !item.disabled) || null;
|
|
}, [stagedQuery]);
|
|
|
|
const orderByTimestamp: OrderByPayload | null = useMemo(() => {
|
|
const timestampOrderBy = listQuery?.orderBy.find(
|
|
(item) => item.columnName === 'timestamp',
|
|
);
|
|
|
|
return timestampOrderBy || null;
|
|
}, [listQuery]);
|
|
|
|
const isMultipleQueries = useMemo(
|
|
() =>
|
|
currentQuery.builder.queryData.length > 1 ||
|
|
currentQuery.builder.queryFormulas.length > 0,
|
|
[currentQuery],
|
|
);
|
|
|
|
const isGroupByExist = useMemo(() => {
|
|
const groupByCount: number = currentQuery.builder.queryData.reduce<number>(
|
|
(acc, query) => acc + query.groupBy.length,
|
|
0,
|
|
);
|
|
|
|
return groupByCount > 0;
|
|
}, [currentQuery]);
|
|
|
|
const isLimit: boolean = useMemo(() => {
|
|
if (!listQuery) return false;
|
|
if (!listQuery.limit) return false;
|
|
|
|
return logs.length >= listQuery.limit;
|
|
}, [logs.length, listQuery]);
|
|
|
|
const listChartQuery = useMemo(() => {
|
|
if (!stagedQuery || !listQuery) return null;
|
|
|
|
const modifiedQueryData: IBuilderQuery = {
|
|
...listQuery,
|
|
aggregateOperator: StringOperators.COUNT,
|
|
};
|
|
|
|
const modifiedQuery: Query = {
|
|
...stagedQuery,
|
|
builder: {
|
|
...stagedQuery.builder,
|
|
queryData: stagedQuery.builder.queryData.map((item) => ({
|
|
...item,
|
|
...modifiedQueryData,
|
|
})),
|
|
},
|
|
};
|
|
|
|
return modifiedQuery;
|
|
}, [stagedQuery, listQuery]);
|
|
|
|
const exportDefaultQuery = useMemo(
|
|
() =>
|
|
updateAllQueriesOperators(
|
|
currentQuery || initialQueriesMap.logs,
|
|
PANEL_TYPES.TIME_SERIES,
|
|
DataSource.LOGS,
|
|
),
|
|
[currentQuery, updateAllQueriesOperators],
|
|
);
|
|
|
|
const listChartData = useGetExplorerQueryRange(
|
|
listChartQuery,
|
|
PANEL_TYPES.TIME_SERIES,
|
|
{
|
|
enabled: !!listChartQuery && panelType === PANEL_TYPES.LIST,
|
|
},
|
|
);
|
|
|
|
const { data, isFetching, isError } = useGetExplorerQueryRange(
|
|
requestData,
|
|
panelType,
|
|
{
|
|
keepPreviousData: true,
|
|
enabled: !isLimit && !!requestData,
|
|
},
|
|
{
|
|
...(timeRange &&
|
|
activeLogId &&
|
|
!logs.length && {
|
|
start: timeRange.start,
|
|
end: timeRange.end,
|
|
}),
|
|
},
|
|
);
|
|
|
|
const getUpdateQuery = useCallback(
|
|
(newPanelType: PANEL_TYPES): Query => {
|
|
let query = updateAllQueriesOperators(
|
|
currentQuery,
|
|
newPanelType,
|
|
DataSource.TRACES,
|
|
);
|
|
|
|
if (newPanelType === PANEL_TYPES.LIST) {
|
|
query = updateQueriesData(query, 'queryData', (item) => ({
|
|
...item,
|
|
orderBy: item.orderBy.filter((item) => item.columnName !== SIGNOZ_VALUE),
|
|
aggregateAttribute: initialAutocompleteData,
|
|
}));
|
|
}
|
|
|
|
return query;
|
|
},
|
|
[currentQuery, updateAllQueriesOperators, updateQueriesData],
|
|
);
|
|
|
|
const handleChangeView = useCallback(
|
|
(type: string) => {
|
|
const newPanelType = type as PANEL_TYPES;
|
|
|
|
if (newPanelType === panelType) return;
|
|
|
|
const query = getUpdateQuery(newPanelType);
|
|
|
|
redirectWithQueryBuilderData(query, {
|
|
[queryParamNamesMap.panelTypes]: newPanelType,
|
|
});
|
|
},
|
|
[panelType, getUpdateQuery, redirectWithQueryBuilderData],
|
|
);
|
|
|
|
const getRequestData = useCallback(
|
|
(
|
|
query: Query | null,
|
|
params: {
|
|
page: number;
|
|
log: ILog | null;
|
|
pageSize: number;
|
|
filters: TagFilter;
|
|
},
|
|
): Query | null => {
|
|
if (!query) return null;
|
|
|
|
const paginateData = getPaginationQueryData({
|
|
filters: params.filters,
|
|
listItemId: params.log ? params.log.id : null,
|
|
orderByTimestamp,
|
|
page: params.page,
|
|
pageSize: params.pageSize,
|
|
});
|
|
|
|
const queryData: IBuilderQuery[] =
|
|
query.builder.queryData.length > 1
|
|
? query.builder.queryData
|
|
: [
|
|
{
|
|
...(listQuery || initialQueryBuilderFormValues),
|
|
...paginateData,
|
|
},
|
|
];
|
|
|
|
const data: Query = {
|
|
...query,
|
|
builder: {
|
|
...query.builder,
|
|
queryData,
|
|
},
|
|
};
|
|
|
|
return data;
|
|
},
|
|
[orderByTimestamp, listQuery],
|
|
);
|
|
|
|
const handleEndReached = useCallback(
|
|
(index: number) => {
|
|
if (!listQuery) return;
|
|
|
|
if (isLimit) return;
|
|
if (logs.length < pageSize) return;
|
|
|
|
const { limit, filters } = listQuery;
|
|
|
|
const lastLog = logs[index];
|
|
|
|
const nextLogsLength = logs.length + pageSize;
|
|
|
|
const nextPageSize =
|
|
limit && nextLogsLength >= limit ? limit - logs.length : pageSize;
|
|
|
|
if (!stagedQuery) return;
|
|
|
|
const newRequestData = getRequestData(stagedQuery, {
|
|
filters,
|
|
page: page + 1,
|
|
log: orderByTimestamp ? lastLog : null,
|
|
pageSize: nextPageSize,
|
|
});
|
|
|
|
setPage((prevPage) => prevPage + 1);
|
|
|
|
setRequestData(newRequestData);
|
|
},
|
|
[
|
|
isLimit,
|
|
logs,
|
|
listQuery,
|
|
pageSize,
|
|
stagedQuery,
|
|
getRequestData,
|
|
page,
|
|
orderByTimestamp,
|
|
],
|
|
);
|
|
|
|
const {
|
|
mutate: updateDashboard,
|
|
isLoading: isUpdateDashboardLoading,
|
|
} = useUpdateDashboard();
|
|
|
|
const handleExport = useCallback(
|
|
(dashboard: Dashboard | null): void => {
|
|
if (!dashboard || !panelType) return;
|
|
|
|
const panelTypeParam = AVAILABLE_EXPORT_PANEL_TYPES.includes(panelType)
|
|
? panelType
|
|
: PANEL_TYPES.TIME_SERIES;
|
|
|
|
const updatedDashboard = addEmptyWidgetInDashboardJSONWithQuery(
|
|
dashboard,
|
|
exportDefaultQuery,
|
|
panelTypeParam,
|
|
);
|
|
|
|
updateDashboard(updatedDashboard, {
|
|
onSuccess: (data) => {
|
|
if (data.error) {
|
|
const message =
|
|
data.error === 'feature usage exceeded' ? (
|
|
<span>
|
|
Panel limit exceeded for {DataSource.LOGS} in community edition. Please
|
|
checkout our paid plans{' '}
|
|
<a
|
|
href="https://signoz.io/pricing/?utm_source=product&utm_medium=dashboard-limit"
|
|
rel="noreferrer noopener"
|
|
target="_blank"
|
|
>
|
|
here
|
|
</a>
|
|
</span>
|
|
) : (
|
|
data.error
|
|
);
|
|
notifications.error({
|
|
message,
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
const dashboardEditView = generateExportToDashboardLink({
|
|
query: exportDefaultQuery,
|
|
panelType: panelTypeParam,
|
|
dashboardId: data.payload?.uuid || '',
|
|
});
|
|
|
|
history.push(dashboardEditView);
|
|
},
|
|
onError: handleAxisError,
|
|
});
|
|
},
|
|
[
|
|
exportDefaultQuery,
|
|
history,
|
|
notifications,
|
|
panelType,
|
|
updateDashboard,
|
|
handleAxisError,
|
|
],
|
|
);
|
|
|
|
useEffect(() => {
|
|
const shouldChangeView = isMultipleQueries || isGroupByExist;
|
|
|
|
if (panelType === PANEL_TYPES.LIST && shouldChangeView) {
|
|
handleChangeView(PANEL_TYPES.TIME_SERIES);
|
|
}
|
|
}, [panelType, isMultipleQueries, isGroupByExist, handleChangeView]);
|
|
|
|
useEffect(() => {
|
|
const currentParams = data?.params as Omit<LogTimeRange, 'pageSize'>;
|
|
const currentData = data?.payload.data.newResult.data.result || [];
|
|
if (currentData.length > 0 && currentData[0].list) {
|
|
const currentLogs: ILog[] = currentData[0].list.map((item) => ({
|
|
...item.data,
|
|
timestamp: item.timestamp,
|
|
}));
|
|
const newLogs = [...logs, ...currentLogs];
|
|
|
|
setLogs(newLogs);
|
|
onTimeRangeChange({
|
|
start: currentParams?.start,
|
|
end: timeRange?.end || currentParams?.end,
|
|
pageSize: newLogs.length,
|
|
});
|
|
}
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [data]);
|
|
|
|
useEffect(() => {
|
|
if (
|
|
requestData?.id !== stagedQuery?.id ||
|
|
currentMinTimeRef.current !== minTime
|
|
) {
|
|
const newRequestData = getRequestData(stagedQuery, {
|
|
filters: listQuery?.filters || initialFilters,
|
|
page: 1,
|
|
log: null,
|
|
pageSize:
|
|
timeRange?.pageSize && activeLogId ? timeRange?.pageSize : pageSize,
|
|
});
|
|
|
|
setLogs([]);
|
|
setPage(1);
|
|
setRequestData(newRequestData);
|
|
currentMinTimeRef.current = minTime;
|
|
|
|
if (!activeLogId) {
|
|
onTimeRangeChange(null);
|
|
}
|
|
}
|
|
}, [
|
|
stagedQuery,
|
|
requestData,
|
|
getRequestData,
|
|
listQuery,
|
|
pageSize,
|
|
minTime,
|
|
timeRange,
|
|
activeLogId,
|
|
onTimeRangeChange,
|
|
panelType,
|
|
]);
|
|
|
|
const tabsItems: TabsProps['items'] = useMemo(
|
|
() => [
|
|
{
|
|
label: (
|
|
<TabLabel
|
|
label="List View"
|
|
tooltipText="Please remove attributes from Group By filter to switch to List View tab"
|
|
isDisabled={isMultipleQueries || isGroupByExist}
|
|
/>
|
|
),
|
|
key: PANEL_TYPES.LIST,
|
|
disabled: isMultipleQueries || isGroupByExist,
|
|
children: (
|
|
<LogsExplorerList
|
|
isLoading={isFetching}
|
|
currentStagedQueryData={listQuery}
|
|
logs={logs}
|
|
onEndReached={handleEndReached}
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
label: <TabLabel label="Time Series" isDisabled={false} />,
|
|
key: PANEL_TYPES.TIME_SERIES,
|
|
children: (
|
|
<TimeSeriesView isLoading={isFetching} data={data} isError={isError} />
|
|
),
|
|
},
|
|
{
|
|
label: 'Table',
|
|
key: PANEL_TYPES.TABLE,
|
|
children: (
|
|
<LogsExplorerTable
|
|
data={data?.payload.data.newResult.data.result || []}
|
|
isLoading={isFetching}
|
|
/>
|
|
),
|
|
},
|
|
],
|
|
[
|
|
isMultipleQueries,
|
|
isGroupByExist,
|
|
isFetching,
|
|
listQuery,
|
|
logs,
|
|
handleEndReached,
|
|
data,
|
|
isError,
|
|
],
|
|
);
|
|
|
|
const chartData = useMemo(() => {
|
|
if (!stagedQuery) return [];
|
|
|
|
if (panelType === PANEL_TYPES.LIST) {
|
|
if (
|
|
listChartData &&
|
|
listChartData.data &&
|
|
listChartData.data.payload.data.result.length > 0
|
|
) {
|
|
return listChartData.data.payload.data.result;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
if (!data || data.payload.data.result.length === 0) return [];
|
|
|
|
const isGroupByExist = stagedQuery.builder.queryData.some(
|
|
(queryData) => queryData.groupBy.length > 0,
|
|
);
|
|
|
|
const firstPayloadQuery = data.payload.data.result.find(
|
|
(item) => item.queryName === listQuery?.queryName,
|
|
);
|
|
|
|
const firstPayloadQueryArray = firstPayloadQuery ? [firstPayloadQuery] : [];
|
|
|
|
return isGroupByExist ? data.payload.data.result : firstPayloadQueryArray;
|
|
}, [stagedQuery, panelType, data, listChartData, listQuery]);
|
|
|
|
return (
|
|
<>
|
|
<LogsExplorerChart isLoading={isFetching} data={chartData} />
|
|
{stagedQuery && (
|
|
<ActionsWrapper>
|
|
<ExportPanel
|
|
query={exportDefaultQuery}
|
|
isLoading={isUpdateDashboardLoading}
|
|
onExport={handleExport}
|
|
/>
|
|
</ActionsWrapper>
|
|
)}
|
|
<Tabs
|
|
items={tabsItems}
|
|
defaultActiveKey={panelType || PANEL_TYPES.LIST}
|
|
activeKey={panelType || PANEL_TYPES.LIST}
|
|
onChange={handleChangeView}
|
|
destroyInactiveTabPane
|
|
/>
|
|
|
|
<GoToTop />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default memo(LogsExplorerViews);
|