-
Notifications
You must be signed in to change notification settings - Fork 237
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
TC Review Request: Go Metric SDK #1663
Comments
cc @open-telemetry/technical-committee |
@MrAlias I added this to the next TC meeting agenda. We will post back here once the TC member is selected. |
I volunteered to do this. I am familiar with the Go metrics SDK and have followed the recent releases. I don't expect any blockers, but will do the review as requested. |
Speaking for the TC, I have reviewed the v1.17.0/v0.40.0 OTel-Go metrics SDK. Thank you @MrAlias, for conducting a thorough internal review. Having witnessed the output of that review, I am not surprised to find the OTel-Go metrics SDK in a healthy state of conformity. Here are some areas of feedback for consideration as the user-base grows. Backwards/Forwards compatibility protectionI really admire the work that has been put in to protecting the interfaces from breaking changes. Users are explicitly prevented from providing implementations of interfaces that they are not supposed to, to protect the future ability of maintainers to improve the code. This sort of protection goes beyond what OTel requires, but ultimately this rigor will help OTel adoption and prevent the need for future breaking changes. Straight-forward code is easy to followI have constructed at least two Go metrics SDK prototypes by now, so I am familiar with the territory. What I admire most about this code is that it remains simple and straightforward, despite there being plenty of opportunity to do complicated things to appease demanding users. It is a good thing for a community-maintained SDK to stay simple and avoid premature optimization, and if there are specific problems with performance, users will bring those to the maintainers and (because of the protections mentioned above) there will be a path forward for future optimizations. As an example of this statement, I noticed that for each temporality, each aggregator has a method named cumulative() and delta(). These methods are nearly identical, and it might be tempting to factor the code in such a way that temporality controls were less transparent -- for example, the logic to aggregate could be the same if there were another piece of code responsible for resetting the aggregator state when temporality==delta. Of course, this is a very high-level claim, and the details in the code really matter. It could be that there are more compact or more performance ways to implement this SDK, but I'm glad to have a simple starting point. Memory limitsAs discussed in open-telemetry/opentelemetry-go#3006, the SDK contains some TODOs about what was eventually specified in open-telemetry/opentelemetry-specification#2960. I believe it is OK to call the SDK stable without addressing this issue first (as long as the maintainers agree). On the other hand, I'm familiar with cardinality explosions impacting the OTel Collector already, so this would be a nice safety feature to prioritize. Performance concernsI expect there will be users who are not entirely satisfied by the performance of the SDK, but I don't see it as a problem with the SDK itself. A number of memory-allocation optimizations have been applied already (e.g., support for re-use across collections, use of sync.Pool in various places). My one reservation is about the cost of constructing I am hopeful that OTel will continue to evolve in ways that encourage more efficient APIs to exist, which is not to say what's here has to change. With what we have in the Go API today, the user may construct a One last area of concern (also on performance), is the use of SummaryThis SDK passes review. Well done @MrAlias, @MadVikingGod, @pellared and the @open-telemetry/go-approvers! 🎉 |
@MrAlias I feel we can close this, let me know if you're satisfied. Thanks! |
The Go SIG is looking to make a stable release of the OpenTelemetry metric SDK in Go. We are looking for a TC member familiar with the metric SDK specification to review our offering and help ensure our compliance with the specification.
Prior work
We have conducted our own internal review of the specification here. That review has identified no outstanding compliance issues, but does include minor documentation work still to be done and the following specification issues that remain:
MetricProducer
given this will be included in the stable SDK.attribute_keys
stream configuration.Other than this documented work in the linked project, the SDK should be ready for stable release and is currently ready for TC review.
Inventory
We would like to evaluate the v1.17.0/v0.40.0/v0.5.0 Release, links should be related to this tag.
MeterProvider
View
Aggregation
Meter
MetricReader
ManualReader
PeriodicReader
MetricExporter
MetricProducer
The text was updated successfully, but these errors were encountered: