Skip to content

Commit

Permalink
feat: show trace status in dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
tschoffelen committed Sep 7, 2024
1 parent 9f38f0b commit cafaf63
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/dashboard/src/routes/functions/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,11 @@ export const columns: ColumnDef<FunctionItem>[] = [
return <span>{row.getValue("memoryAllocated") || "-"} MB</span>;
},
},
{
accessorKey: "traceStatus",
header: "Trace status",
cell: ({ row }) => {
return <span>{row.getValue("traceStatus")}</span>;
},
},
];

0 comments on commit cafaf63

Please sign in to comment.