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
configgrpc: Deprecate GRPCClientSettings, use ClientConfig instead (#6767)
π‘ Enhancements π‘
mdatagen: Add a generated test that checks the config struct using componenttest.CheckConfigStruct (#9438)
component: Add component.UseLocalHostAsDefaultHost feature gate that changes default endpoints from 0.0.0.0 to localhost (#8510)
The only component in this repository affected by this is the OTLP receiver.
configcompressions: Deprecate IsCompressed. Use CompressionType.IsCompressed instead instead. (#9435)
configcompression: Deprecate CompressionType, use Type instead. (#9416)
confighttp: Deprecate CORSSettings, use CORSConfig instead (#6767)
configgrpc: Deprecate ToListener function in favor of ToListenerContext (#9389)
configgrpc: Deprecate GRPCServerSettings, use ServerConfig instead (#6767)
confighttp: Deprecate HTTPClientSettings, use ClientConfig instead (#6767)
confighttp: Deprecate HTTPServerSettings, use ServerConfig instead (#6767)
confmap/provider: Deprecate .New in favor of .NewWithSettings for all core providers (#5615, #9162)
NewWithSettings now takes an empty confmap.ProviderSettings struct. This will be used to pass a logger in the future.
π‘ Enhancements π‘
exporter/exporterhelper: Add API for enabling queue in the new exporter helpers. (#7874)
The following experimental API is introduced in exporter package:
exporterhelper.WithRequestQueue: a new exporter helper option for using a queue.
exporterqueue.Queue: an interface for queue implementations.
exporterqueue.Factory: a queue factory interface, implementations of this interface are intended to be used with WithRequestQueue option.
exporterqueue.Settings: queue factory settings.
exporterqueue.Config: common configuration for queue implementations.
exporterqueue.NewDefaultConfig: a function for creating a default queue configuration.
exporterqueue.NewMemoryQueueFactory: a new factory for creating a memory queue.
`exporterqueue.NewPersistentQueueFactory: a factory for creating a persistent queue.
featuregate: Add the featuregate.ErrAlreadyRegistered error, which is returned by featuregate.Registry's Register when adding a feature gate that is already registered. (#8622)
Use errors.Is to check for this error.