-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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] Fix overlapping transaction names #76083
Conversation
...in the table and the header. Did this by adding `word-break: break-all` to them. Also: * Rename List to TransactionList * Add stories for TransactionList and ApmHeader * Add missing type information to transactions based on sample transaction * Fixes elastic#73960.
Pinging @elastic/apm-ui (Team:apm) |
retest |
@elasticmachine merge upstream |
@@ -19,6 +19,7 @@ export type AgentName = | |||
| 'ruby'; | |||
|
|||
export interface Agent { | |||
ephemeral_id?: string; |
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.
Until now we've only added fields we were actively using. Adding every field didn't add much value since most of them are never used by the ui, and was time consuming since it is a manual process.
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.
I'm actively using it in the Storybook. I'm ok with manually adding them, but it should be a reasonable assumption that I can copy real data from the UI, paste it into a story or test, and have it pass the type checker.
@elasticmachine merge upstream |
💚 Build SucceededBuild metricsasync chunks size
History
To update your PR or re-run it, just comment with: |
* master: [APM] Use observer.hostname instead of observer.name (elastic#76074) Legacy logging: fix remoteAddress being duplicated in userAgent field (elastic#76751) Remove legacy deprecation adapter (elastic#76753) [Security Solution][Detections] Rule forms cleanup (elastic#76138) Adds back in custom images for reporting + tests (elastic#76810) [APM] Fix overlapping transaction names (elastic#76083) [Ingest Pipelines] Add descriptions for ingest processors A-D (elastic#75975)
...in the table and the header. Did this by adding `word-break: break-all` to them. Also: * Rename List to TransactionList * Add stories for TransactionList and ApmHeader * Add missing type information to transactions based on sample transaction Fixes elastic#73960. # Conflicts: # x-pack/plugins/apm/typings/es_schemas/raw/fields/host.ts # x-pack/plugins/apm/typings/es_schemas/raw/fields/service.ts
...in the table and the header. Did this by adding `word-break: break-all` to them. Also: * Rename List to TransactionList * Add stories for TransactionList and ApmHeader * Add missing type information to transactions based on sample transaction Fixes #73960. # Conflicts: # x-pack/plugins/apm/typings/es_schemas/raw/fields/host.ts # x-pack/plugins/apm/typings/es_schemas/raw/fields/service.ts
...in the table and the header. Did this by adding
word-break: break-all
to them.Before:
After:
Also:
Fixes #73960.