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
SDK SHOULD enable the instrument using the default aggregation and temporality. Users can configure match-all Views using Drop aggregation to disable instruments by default.
E.g.
MeterProvider(
views=[
View(instrument_name="*", aggregation=DropAggregation()),
View(instrument_name="<instrument1 to turn on>"),
View(instrument_name="<instrument2 to turn on>"),
],
...
)
The text was updated successfully, but these errors were encountered:
The
enable_default_view
behavior should be accomplished with views as described in open-telemetry/opentelemetry-specification#2417E.g.
The text was updated successfully, but these errors were encountered: