-
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] transactionType
should be required on service-specific endpoints
#86893
[APM] transactionType
should be required on service-specific endpoints
#86893
Conversation
Pinging @elastic/apm-ui (Team:apm) |
@elasticmachine merge upstream |
@elasticmachine merge upstream |
}: { | ||
start: number; | ||
end: number; | ||
transactionGroups: TransactionGroupWithoutTimeseriesData[]; | ||
timeseriesData: TransactionGroupTimeseriesData; | ||
latencyAggregationType: LatencyAggregationType; | ||
transactionType: 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.
I think there's still a terms aggregation on transaction.type in the original search that we might not need anymore. Can you have a look? (Might be that we are doing it in other places that can now be removed as well).
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.
💚 Build SucceededMetrics [docs]Async chunks
Distributable file count
History
To update your PR or re-run it, just comment with: |
{ | ||
req: { | ||
url: `/api/apm/services/foo/transactions/charts/throughput?start=${start}&end=${end}&uiFilters=%7B%22environment%22%3A%22testing%22%7D`, | ||
}, | ||
expectForbidden: expect403, | ||
expectResponse: expect200, |
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.
Why is this removed? Shouldn't we just add a transaction type?
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.
the one above already tests with a transaction type:
…nts (elastic#86893) * making transaction type required on some apis * addressing PR comments Co-authored-by: Kibana Machine <[email protected]>
…nts (elastic#86893) * making transaction type required on some apis * addressing PR comments Co-authored-by: Kibana Machine <[email protected]>
…nts (#86893) (#87316) * making transaction type required on some apis * addressing PR comments Co-authored-by: Kibana Machine <[email protected]> Co-authored-by: Kibana Machine <[email protected]>
…nts (#86893) (#87315) * making transaction type required on some apis * addressing PR comments Co-authored-by: Kibana Machine <[email protected]> Co-authored-by: Kibana Machine <[email protected]>
closes #84611
Partially fixes this #86614
Fix the duplicate calls on the error_rate api due to the transaction type.