Skip to content

Commit

Permalink
[Infra] Add Threads tab tooltip (elastic#175537)
Browse files Browse the repository at this point in the history
Closes elastic#175535

## Summary

Adds a tooltip for the Threads tab in Profiling within Infra host
details.

![CleanShot 2024-01-25 at 14 30
55@2x](https://github.com/elastic/kibana/assets/793851/f292d0c9-4f82-42df-9f81-ef378d3f56a2)
  • Loading branch information
mykolaharmash authored Jan 25, 2024
1 parent 8e9651b commit 6faccba
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,16 @@ export function Profiling() {
<Threads />
</>
),
append: (
<Popover iconSize="s" iconColor="subdued" icon="questionInCircle">
<EuiText size="xs">
<FormattedMessage
id="xpack.infra.profiling.threadsInfoPopoverBody"
defaultMessage="Visualize profiling stacktraces grouped by process thread names. This view enables you to identify the top threads consuming CPU resources and allows you to drill down into the call stack of each thread, so you can quickly identify resource-intensive lines of code within the thread."
/>
</EuiText>
</Popover>
),
},
];

Expand Down

0 comments on commit 6faccba

Please sign in to comment.