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
Meter::Collect is usually called in a background thread (via PeriodicExportingMetricReader)
Meter::Collect
PeriodicExportingMetricReader
Meter::RegisterSyncMetricStorage and Meter::RegisterAsyncMetricStorage are called for each new instrument.
Meter::RegisterSyncMetricStorage
Meter::RegisterAsyncMetricStorage
These methods are not thread safe, and can cause SEGFAULT under certain conditions.
The text was updated successfully, but these errors were encountered:
Fix #1663 Threading issue between Meter::RegisterSyncMetricStorage an…
99f2ba4
…d Meter::Collect (#1666)
Fix open-telemetry#1663 Threading issue between Meter::RegisterSyncMe…
29e050b
…tricStorage and Meter::Collect (open-telemetry#1666)
lalitb
Successfully merging a pull request may close this issue.
Meter::Collect
is usually called in a background thread (viaPeriodicExportingMetricReader
)Meter::RegisterSyncMetricStorage
andMeter::RegisterAsyncMetricStorage
are called for each new instrument.These methods are not thread safe, and can cause SEGFAULT under certain conditions.
The text was updated successfully, but these errors were encountered: