OpenTelemetry SDK offers very strong tool in form of Aggregation views and customizations as documented e. g. in https://opentelemetry.io/docs/instrumentation/java/manual/#views.
Current spec gives access to this configuration, however in quite roundabout way of registering an AutoConfigurationCustomizerProvider, and in it invoking configurationCustomizer.addMeterProviderCustomizer((builder, config) -> builder.registerView(...)).
An example of achieving that as well as some motivation (adding or removing dimensions of measurement) should be provided in the spec.
OpenTelemetry SDK offers very strong tool in form of Aggregation views and customizations as documented e. g. in https://opentelemetry.io/docs/instrumentation/java/manual/#views.
Current spec gives access to this configuration, however in quite roundabout way of registering an
AutoConfigurationCustomizerProvider, and in it invokingconfigurationCustomizer.addMeterProviderCustomizer((builder, config) -> builder.registerView(...)).An example of achieving that as well as some motivation (adding or removing dimensions of measurement) should be provided in the spec.