-
Notifications
You must be signed in to change notification settings - Fork 19
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 metric producers to meter_provider configuration #90
Conversation
29c0fa9
to
70f2ef1
Compare
/easycla |
b4c085a
to
9fb79e5
Compare
}, | ||
"producers": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/$defs/MetricProducer" | ||
} | ||
} |
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 needed here if already in the top level MetricReader? If it is required for pull (maybe to control at a granular level) why not for periodic 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.
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.
Thanks for calling this out @bogdandrutu!
Part of open-telemetry/opentelemetry-specification#4015
Metric producers are registered to metric readers, so i've nested it under the periodic and manual readers.
@gouthamve @jack-berg