You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We could enable them by using :private-members:, but probably it's too much and will include documentation of members we don't want to, another issue is that the documented name would include the underscore, and we want the user to call the method without it on the BaseInstrumentor class. Also, we don't have a way to document the parameters that those methods could take as they are declared as **kwargs.
The text was updated successfully, but these errors were encountered:
lzchen
transferred this issue from open-telemetry/opentelemetry-python
Nov 9, 2020
Each integration should implement the
_instrument
and_uninstrument
methods according to theBaseInstrumentor
interface. Those methods are private and are not included in the documentation with the current configuration: https://opentelemetry-python.readthedocs.io/en/latest/ext/flask/flask.html#api.We could enable them by using
:private-members:
, but probably it's too much and will include documentation of members we don't want to, another issue is that the documented name would include the underscore, and we want the user to call the method without it on theBaseInstrumentor
class. Also, we don't have a way to document the parameters that those methods could take as they are declared as**kwargs
.The text was updated successfully, but these errors were encountered: