[APM] Fixes inconsistent labels for throughput & latency#88101
[APM] Fixes inconsistent labels for throughput & latency#88101ogupte merged 5 commits intoelastic:masterfrom
Conversation
|
Pinging @elastic/apm-ui (Team:apm) |
formgeist
left a comment
There was a problem hiding this comment.
Perhaps the description of the issue wasn't clear enough, but we should align everywhere else to the Service overview labels. I've suggested some changes. Beyond this, I found a few issues, perhaps we can fix these in this PR.
- Rename the "Average duration by span type". Somehow we renamed the panel, but never changed the chart, so the title is actually misleading. We should "revert" back to the original title; "Time spent by span type".
- The Latency visualization is set to "Average" but the label in the table says "95th". Not sure when this was introduced, but it's reproducible on
master.
cc @sqren
x-pack/plugins/apm/public/components/app/service_inventory/ServiceList/index.tsx
Outdated
Show resolved
Hide resolved
| 'xpack.apm.transactionsTable.trafficPerMinuteColumnLabel', | ||
| { | ||
| defaultMessage: 'Trans. per minute', | ||
| defaultMessage: 'Traffic (per min)', |
There was a problem hiding this comment.
| defaultMessage: 'Traffic (per min)', | |
| defaultMessage: 'Traffic', |
x-pack/plugins/apm/public/components/shared/charts/transaction_charts/index.tsx
Outdated
Show resolved
Hide resolved
@formgeist: Good catch! I've fixed it in #88188 |
formgeist
left a comment
There was a problem hiding this comment.
Thanks for the changes 👍
💚 Build SucceededMetrics [docs]Async chunks
History
To update your PR or re-run it, just comment with: |
* Closes elastic#87483. Updates several labels to be consistent accross views. * Updates integration tests/snapshots with new term * Changes "traffic" => "throughput" in the labels * addresses feedback from PR * includes tpm unit in Observability overview page and updates test
* Closes elastic#87483. Updates several labels to be consistent accross views. * Updates integration tests/snapshots with new term * Changes "traffic" => "throughput" in the labels * addresses feedback from PR * includes tpm unit in Observability overview page and updates test
| }, | ||
| { | ||
| field: 'trafficPerMinute', | ||
| field: 'transactionsPerMinute', |
There was a problem hiding this comment.
Shouldn't this have been changed to throughput instead of transactionsPerMinute?
| serviceName: 'opbeans-python', | ||
| agentName: 'python', | ||
| trafficPerMinute: { | ||
| transactionsPerMinute: { |
| <TimeseriesChart | ||
| fetchStatus={throughputChartsStatus} | ||
| id="trafficPerMinute" | ||
| id="transactionsPerMinute" |



Closes #87483. Updates several labels to be consistent across views.