Skip to content

Commit

Permalink
Trace statistics table is now using antd Table component (#1500)
Browse files Browse the repository at this point in the history
Trace Statistics table is not using antd Table component like Trace span
Table so now code is modified such that TraceStatistics table now uses
antd Table component

Resolves #1181 

@yurishkuro Once review this PR and let me now any changes should I do

---------

Signed-off-by: GLVS Kiriti <glvskiriti2003369@gmail.com>
Signed-off-by: GLVSKiriti <116095646+GLVSKiriti@users.noreply.github.com>
Co-authored-by: Yuri Shkuro <yurishkuro@users.noreply.github.com>
Co-authored-by: Yash Sharma <yashrsharma44@gmail.com>
  • Loading branch information
3 people committed Jun 19, 2023
1 parent beca0a8 commit ef41574
Show file tree
Hide file tree
Showing 18 changed files with 123 additions and 1,051 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,18 @@ export default class TraceSpanView extends Component<Props, State> {
title: 'Service Name',
dataIndex: 'process.serviceName',
width: '25%',
sorter: (a, b) => a.process.serviceName.localeCompare(b.process.serviceName),
},
{
title: 'Operation',
dataIndex: 'operationName',
width: '25%',
sorter: (a, b) => a.operationName.localeCompare(b.operationName),
},
{
title: 'ID',
dataIndex: 'spanID',
sorter: (a, b) => a.spanID.localeCompare(b.spanID),
render: (text: any, record: Span) => {
return (
<a
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit ef41574

Please sign in to comment.