Skip to content

Commit 21378f7

Browse files
author
Adam Tackett
committed
rever traces to normal, handle both in UI
Signed-off-by: Adam Tackett <[email protected]>
1 parent 46bbd01 commit 21378f7

File tree

4 files changed

+58
-335
lines changed

4 files changed

+58
-335
lines changed

public/components/trace_analytics/components/traces/traces_content.tsx

+44-58
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import { coreRefs } from '../../../../framework/core_refs';
2121
import { handleServiceMapRequest } from '../../requests/services_request_handler';
2222
import {
2323
handleCustomIndicesTracesRequest,
24-
handleCustomTracesRequest,
2524
handleTracesRequest,
2625
} from '../../requests/traces_request_handler';
2726
import { getValidFilterFields } from '../common/filters/filter_helpers';
@@ -75,38 +74,38 @@ export function TracesContent(props: TracesProps) {
7574
const [includeMetrics, setIncludeMetrics] = useState(false);
7675
const isNavGroupEnabled = coreRefs?.chrome?.navGroup.getNavGroupEnabled();
7776

78-
//ADAM TESITNG DELETE console.log
79-
// const defaultSortField = props.tracesTableMode === 'traces' ? 'last_updated' : 'endTime';
80-
// const [sortingColumns, setSortingColumns] = useState<{ id: string; direction: "desc" | "asc" }[]>([{ id: defaultSortField, direction: "desc"}]);
81-
8277
const [sortingColumns, setSortingColumns] = useState<{ id: string; direction: "desc" | "asc" }[]>([]);
8378

8479
const [pageIndex, setPageIndex] = useState(0);
8580
const [pageSize, setPageSize] = useState(10);
8681

8782
const onSort = (sortColumns: { id: string; direction: "desc" | "asc" }[]) => {
88-
8983
if (!sortColumns || sortColumns.length === 0) {
9084
setSortingColumns([]);
91-
refresh(undefined, query, pageIndex, pageSize);
9285
return;
9386
}
94-
87+
9588
const sortField = sortColumns[0]?.id;
9689
const sortDirection = sortColumns[0]?.direction;
97-
90+
9891
if (!sortField || !sortDirection) {
9992
console.error("Invalid sorting column:", sortColumns);
10093
return;
10194
}
102-
95+
10396
setSortingColumns(sortColumns);
104-
refresh(
105-
{ field: sortField, direction: sortDirection },
106-
query,
107-
pageIndex,
108-
pageSize
109-
);
97+
98+
if (tracesTableMode === 'traces') {
99+
const sortedItems = [...tableItems].sort((a, b) => {
100+
const valueA = a[sortField];
101+
const valueB = b[sortField];
102+
return sortDirection === 'asc' ? valueA - valueB : valueB - valueA;
103+
});
104+
105+
setTableItems(sortedItems);
106+
} else {
107+
refresh({ field: sortField, direction: sortDirection }, query, pageIndex, pageSize);
108+
}
110109
};
111110

112111
const [totalHits, setTotalHits] = useState(0);
@@ -140,12 +139,20 @@ export function TracesContent(props: TracesProps) {
140139
pageSizeOptions: [5, 10, 15],
141140
totalItemCount: totalHits,
142141
onChangePage: (newPage) => {
143-
const { DSL, isUnderOneHour, timeFilterDSL } = generateDSLs();
144-
refreshTableDataOnly(newPage, pageSize, DSL, isUnderOneHour, timeFilterDSL);
142+
if (tracesTableMode === 'traces') {
143+
setPageIndex(newPage);
144+
} else {
145+
const { DSL, isUnderOneHour, timeFilterDSL } = generateDSLs();
146+
refreshTableDataOnly(newPage, pageSize, DSL, isUnderOneHour, timeFilterDSL);
147+
}
145148
},
146149
onChangeItemsPerPage: (newSize) => {
147-
const { DSL, isUnderOneHour, timeFilterDSL } = generateDSLs();
148-
refreshTableDataOnly(0, newSize, DSL, isUnderOneHour, timeFilterDSL);
150+
if (tracesTableMode === 'traces') {
151+
setPageSize(newSize);
152+
} else {
153+
const { DSL, isUnderOneHour, timeFilterDSL } = generateDSLs();
154+
refreshTableDataOnly(0, newSize, DSL, isUnderOneHour, timeFilterDSL);
155+
}
149156
},
150157
};
151158

@@ -231,39 +238,21 @@ export function TracesContent(props: TracesProps) {
231238
? { field: sortingColumns[0].id, direction: sortingColumns[0].direction }
232239
: undefined;
233240

234-
const tracesRequest =
235-
tracesTableMode !== 'traces'
236-
? handleCustomIndicesTracesRequest(
237-
http,
238-
DSL,
239-
tableItems,
240-
setTableItems,
241-
setColumns,
242-
mode,
243-
newPageIndex,
244-
newPageSize,
245-
setTotalHits,
246-
props.dataSourceMDSId[0]?.id,
247-
sortParams,
248-
tracesTableMode,
249-
isUnderOneHour
250-
)
251-
: handleCustomTracesRequest(
252-
http,
253-
DSL,
254-
timeFilterDSL,
255-
tableItems,
256-
setTableItems,
257-
setTotalHits,
258-
mode,
259-
newPageIndex,
260-
newPageSize,
261-
props.dataSourceMDSId[0]?.id,
262-
sortParams,
263-
isUnderOneHour
264-
);
265-
266-
tracesRequest.finally(() => setIsTraceTableLoading(false));
241+
handleCustomIndicesTracesRequest(
242+
http,
243+
DSL,
244+
tableItems,
245+
setTableItems,
246+
setColumns,
247+
mode,
248+
newPageIndex,
249+
newPageSize,
250+
setTotalHits,
251+
props.dataSourceMDSId[0]?.id,
252+
sortParams,
253+
tracesTableMode,
254+
isUnderOneHour
255+
).finally(() => setIsTraceTableLoading(false));
267256
};
268257

269258
const refresh = async (
@@ -318,17 +307,14 @@ export function TracesContent(props: TracesProps) {
318307
tracesTableMode,
319308
isUnderOneHour
320309
)
321-
: handleCustomTracesRequest(
310+
: handleTracesRequest(
322311
http,
323312
DSL,
324313
timeFilterDSL,
325314
tableItems,
326315
setTableItems,
327-
setTotalHits,
328316
mode,
329-
pageIndex,
330-
pageSize,
331-
props.dataSourceMDSId[0]?.id,
317+
props.dataSourceMDSId[0].id,
332318
sort,
333319
isUnderOneHour
334320
);

public/components/trace_analytics/components/traces/traces_custom_indices_table.tsx

+14-11
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,14 @@ export function TracesCustomIndicesTable(props: TracesLandingTableProps) {
6161

6262
const renderCellValue = useMemo(() => {
6363
return ({ rowIndex, columnId }: { rowIndex: number; columnId: string }) => {
64-
const adjustedRowIndex = rowIndex - pagination.pageIndex * pagination.pageSize;
64+
const isTracesMode = props.tracesTableMode === 'traces';
65+
const adjustedRowIndex = isTracesMode ? rowIndex : rowIndex - pagination.pageIndex * pagination.pageSize;
66+
6567
if (!items.hasOwnProperty(adjustedRowIndex)) return '-';
6668
const value = items[adjustedRowIndex]?.[columnId];
67-
69+
6870
if (!value && columnId !== 'status.code' && columnId !== 'error_count') return '-';
69-
71+
7072
switch (columnId) {
7173
case 'endTime':
7274
return moment(value).format('MM/DD/YYYY HH:mm:ss.SSS');
@@ -85,17 +87,18 @@ export function TracesCustomIndicesTable(props: TracesLandingTableProps) {
8587
) : (
8688
'No'
8789
);
88-
case 'error_count':
89-
return value > 0 ? (
90-
<EuiText color="danger" size="s">Yes</EuiText>
91-
) : (
92-
'No'
93-
);
90+
case 'error_count':
91+
return value > 0 ? (
92+
<EuiText color="danger" size="s">Yes</EuiText>
93+
) : (
94+
'No'
95+
);
9496
default:
9597
return value;
9698
}
9799
};
98-
}, [items, pagination.pageIndex, pagination.pageSize]);
100+
}, [items, pagination.pageIndex, pagination.pageSize, props.tracesTableMode]);
101+
99102

100103
const columns = useMemo(() => {
101104
return getTableColumns(
@@ -132,7 +135,7 @@ export function TracesCustomIndicesTable(props: TracesLandingTableProps) {
132135
key={columns.map(col => col.id).join('-')}//Force re-render for switching from spans to traces
133136
columns={columns}
134137
renderCellValue={renderCellValue}
135-
rowCount={totalHits}
138+
rowCount={props.tracesTableMode === 'traces' ? items.length : totalHits}
136139
sorting={{ columns: sortingColumns, onSort }}
137140
pagination={pagination}
138141
isTableDataLoading={loading}

public/components/trace_analytics/requests/queries/traces_queries.ts

-146
Original file line numberDiff line numberDiff line change
@@ -194,152 +194,6 @@ export const getTracesQuery = (
194194
return mode === 'jaeger' ? jaegerQuery : dataPrepperQuery;
195195
};
196196

197-
export const getCustomTracesQuery = (
198-
mode: TraceAnalyticsMode,
199-
from: number,
200-
size: number,
201-
traceId: string = '',
202-
sort?: PropertySort,
203-
isUnderOneHour?: boolean
204-
) => {
205-
const field = sort?.field || '_key';
206-
const direction = sort?.direction || 'asc';
207-
208-
const jaegerQuery: any = {
209-
size,
210-
from,
211-
query: {
212-
bool: {
213-
must: [],
214-
filter: [],
215-
should: [],
216-
must_not: [],
217-
},
218-
},
219-
aggs: {
220-
traces: {
221-
terms: {
222-
field: 'traceID',
223-
size,
224-
order: {
225-
[field]: direction,
226-
},
227-
...(isUnderOneHour && { execution_hint: 'map' }),
228-
},
229-
aggs: {
230-
latency: {
231-
max: {
232-
script: {
233-
source: `
234-
if (doc.containsKey('duration') && !doc['duration'].empty) {
235-
return Math.round(doc['duration'].value) / 1000.0
236-
}
237-
return 0
238-
`,
239-
lang: 'painless',
240-
},
241-
},
242-
},
243-
trace_group: {
244-
terms: {
245-
field: 'traceGroup',
246-
size: 1,
247-
},
248-
},
249-
error_count: {
250-
filter: {
251-
term: {
252-
'tag.error': true,
253-
},
254-
},
255-
},
256-
last_updated: {
257-
max: {
258-
script: {
259-
source: `
260-
if (doc.containsKey('startTime') && !doc['startTime'].empty && doc.containsKey('duration') && !doc['duration'].empty) {
261-
return (Math.round(doc['duration'].value) + Math.round(doc['startTime'].value)) / 1000.0
262-
}
263-
return 0
264-
`,
265-
lang: 'painless',
266-
},
267-
},
268-
},
269-
},
270-
},
271-
},
272-
track_total_hits: true,
273-
};
274-
275-
const dataPrepperQuery: any = {
276-
size,
277-
from,
278-
query: {
279-
bool: {
280-
must: [],
281-
filter: [],
282-
should: [],
283-
must_not: [],
284-
},
285-
},
286-
aggs: {
287-
traces: {
288-
terms: {
289-
field: 'traceId',
290-
size,
291-
order: {
292-
[field]: direction,
293-
},
294-
...(isUnderOneHour && { execution_hint: 'map' }),
295-
},
296-
aggs: {
297-
latency: {
298-
max: {
299-
script: {
300-
source: `
301-
if (doc.containsKey('traceGroupFields.durationInNanos') && !doc['traceGroupFields.durationInNanos'].empty) {
302-
return Math.round(doc['traceGroupFields.durationInNanos'].value / 10000) / 100.0
303-
}
304-
return 0
305-
`,
306-
lang: 'painless',
307-
},
308-
},
309-
},
310-
trace_group: {
311-
terms: {
312-
field: 'traceGroup',
313-
size: 1,
314-
},
315-
},
316-
error_count: {
317-
filter: {
318-
term: {
319-
'traceGroupFields.statusCode': '2',
320-
},
321-
},
322-
},
323-
last_updated: {
324-
max: {
325-
field: 'traceGroupFields.endTime',
326-
},
327-
},
328-
},
329-
},
330-
},
331-
track_total_hits: true,
332-
};
333-
334-
if (traceId) {
335-
jaegerQuery.query.bool.filter.push({ term: { traceID: traceId } });
336-
dataPrepperQuery.query.bool.filter.push({ term: { traceId } });
337-
}
338-
339-
return mode === 'jaeger' ? jaegerQuery : dataPrepperQuery;
340-
};
341-
342-
343197
export const getPayloadQuery = (mode: TraceAnalyticsMode, traceId: string, size = 3000) => {
344198
if (mode === 'jaeger') {
345199
return {

0 commit comments

Comments
 (0)