diff --git a/CommonUI/src/Components/LogsViewer/LogItem.tsx b/CommonUI/src/Components/LogsViewer/LogItem.tsx index d417754133..5aeed8d608 100644 --- a/CommonUI/src/Components/LogsViewer/LogItem.tsx +++ b/CommonUI/src/Components/LogsViewer/LogItem.tsx @@ -214,6 +214,17 @@ const LogItem: FunctionComponent = ( {getCopyButton(props.log.spanId?.toString() || '')} )} + + {props.log.attributes && ( +
+
+ ATTRIBUTES: +
+
+ {JSON.stringify(props.log.attributes, null, 2)} +
+
+ )} ); };