diff --git a/public/app/features/explore/Logs.tsx b/public/app/features/explore/Logs.tsx index cfc109b1a7d..108d4f37a6e 100644 --- a/public/app/features/explore/Logs.tsx +++ b/public/app/features/explore/Logs.tsx @@ -180,7 +180,7 @@ class Row extends PureComponent { {showDuplicates && (
{row.duplicates > 0 ? `${row.duplicates + 1}x` : null}
)} -
+
{showUtc && (
{row.timestamp} @@ -217,13 +217,15 @@ class Row extends PureComponent { )} {!parsed && !needsHighlighter && row.entry} {showFieldStats && ( - +
+ +
)}
diff --git a/public/sass/components/_panel_logs.scss b/public/sass/components/_panel_logs.scss index 572e6e890d7..7a8314abcda 100644 --- a/public/sass/components/_panel_logs.scss +++ b/public/sass/components/_panel_logs.scss @@ -171,6 +171,14 @@ $column-horizontal-spacing: 10px; } } +.logs-row__stats { + margin: 5px 0; + background-color: $popover-bg; + color: $popover-color; + border: 1px solid $popover-border-color; + padding: 10px; +} + .logs-row__field-highlight:hover { color: $typeahead-selected-color; border-bottom-style: solid;