We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is support to emit cloudwatch metrics per xray segment: https://docs.amazonaws.cn/en_us/xray/latest/devguide/xray-sdk-java-monitoring.html (Although I was not able to get it to work)
Feature Request:
Be able to emit latency metrics to cloudwatch on a SUBSEGMENT basis. Not for each segment, but also for the subsegments.
I would be able to work on this issue given guidance on how to do it.
Tagging people related to MetricsSegmentListener: @willarmiros @c1tadel
The text was updated successfully, but these errors were encountered:
Hi @girotomas - yes you can extend the MetricsSegmentListener using the same hooks but for subsegments instead of segments. See here for the SegmentListener interface, which includes subsegment creation/ending hooks: https://github.com/aws/aws-xray-sdk-java/blob/master/aws-xray-recorder-sdk-core/src/main/java/com/amazonaws/xray/listeners/SegmentListener.java
And the MetricsSegmentListener which creates metrics based on segments (the logic would be the same, but for subsegments): https://github.com/aws/aws-xray-sdk-java/blob/master/aws-xray-recorder-sdk-metrics/src/main/java/com/amazonaws/xray/metrics/MetricsSegmentListener.java
Sorry, something went wrong.
No branches or pull requests
There is support to emit cloudwatch metrics per xray segment: https://docs.amazonaws.cn/en_us/xray/latest/devguide/xray-sdk-java-monitoring.html (Although I was not able to get it to work)
Feature Request:
Be able to emit latency metrics to cloudwatch on a SUBSEGMENT basis. Not for each segment, but also for the subsegments.
I would be able to work on this issue given guidance on how to do it.
Tagging people related to MetricsSegmentListener: @willarmiros @c1tadel
The text was updated successfully, but these errors were encountered: