-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[APM] Documentation and alignment for impact column #47602
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, nice! Since this is a tool tip, I don't think we need to explicitly say "Impact is..". What about something like this:
The most used and slowest endpoints in your service. Calculated by multiplying the relative average duration with the number of transactions per minute.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice enhancement!
💚 Build Succeeded
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great @smith 👍
name: ( | ||
<EuiToolTip | ||
content={i18n.translate( | ||
'xpack.apm.tracesTable.impactColumnDescription', | ||
{ | ||
defaultMessage: | ||
"The most used and slowest endpoints in your service. It's calculated by taking the relative average duration times the number of transactions per minute." | ||
} | ||
)} | ||
> | ||
<> | ||
{i18n.translate('xpack.apm.tracesTable.impactColumnLabel', { | ||
defaultMessage: 'Impact' | ||
})} | ||
</> | ||
</EuiToolTip> | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
EUI has an example in their tables docs where they add a small icon to indicate that there's some more information on the table name.
name: (
<EuiToolTip content="Their mascot is the Octokitty">
<span>
Github{' '}
<EuiIcon
size="s"
color="subdued"
type="questionInCircle"
className="eui-alignTop"
/>
</span>
</EuiToolTip>
)
Would we be able to add this in as a small visual enhancement too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added in 684e12d.
In the traces and transactions tables, left align the impact column heading and add a tooltip explaining what it means. Fixes elastic#44313 Fixes elastic#28559
c21975f
to
684e12d
Compare
💚 Build Succeeded |
In the traces and transactions tables, left align the impact column heading and add a tooltip explaining what it means. Fixes elastic#44313 Fixes elastic#28559
In the traces and transactions tables, left align the impact column heading and add a tooltip explaining what it means.
Fixes #44313
Fixes #28559