-
Notifications
You must be signed in to change notification settings - Fork 893
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
Add metrics exporter requirements to the metrics SDK spec #1864
Add metrics exporter requirements to the metrics SDK spec #1864
Conversation
Co-authored-by: Cijo Thomas <[email protected]>
Co-authored-by: Cijo Thomas <[email protected]>
Co-authored-by: John Watson <[email protected]>
Co-authored-by: John Watson <[email protected]>
Discussed in the SIG call, and not mentioned in the comments: The OTel-Go prototype metrics The prototype's basic processor, here, keeps sufficient state during the collect-and-process code path to support both delta and cumulative exporters at once, provided it was given the proper configuration up front. The "Reader" API (presently named The "configuration up front" is provided via the basic Processor's constructor. Each Exporter is also an ExportKindSelector, meaning the exporter will be consulted once per
|
Thanks @reyang. |
…etry#1864) * Add metrics exporter requirements * rewrap * address feedback received during SIG meeting * scope down to push exporter only * Update specification/metrics/sdk.md Co-authored-by: Cijo Thomas <[email protected]> * Update specification/metrics/sdk.md Co-authored-by: Cijo Thomas <[email protected]> * fix wording * adjust wording * adjust wording * Update specification/metrics/sdk.md Co-authored-by: Cijo Thomas <[email protected]> * Update specification/metrics/sdk.md Co-authored-by: Cijo Thomas <[email protected]> * Update specification/metrics/sdk.md Co-authored-by: John Watson <[email protected]> * Update specification/metrics/sdk.md Co-authored-by: John Watson <[email protected]> * keep in-memory exporter untouched for now Co-authored-by: Cijo Thomas <[email protected]> Co-authored-by: John Watson <[email protected]>
Follow up #1837.
Changes