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
Add in the needed interfaces and high-level types for the new SDK design from new_sdk/example. This is not expected to be a fully working implementation.
sdk/metric
type Provider struct to act as the MeterProvider
func New(...Option) metric.MeterProvider creation and configuration function stub for *Provider
Blocked by #2799Add in the needed interfaces and high-level types for the new SDK design from
new_sdk/example
. This is not expected to be a fully working implementation.sdk/metric
type Provider struct
to act as theMeterProvider
func New(...Option) metric.MeterProvider
creation and configuration function stub for *Providerfunc (*Provider) Meter(name string, opts ...metric.MeterOption) metric.Meter
method stubtype meter struct
to act as aMeter
func (*meter) RegisterCallback([]instrument.Asynchronous, func(context.Context)) error
method stubfunc (*meter) AsyncInt64() asyncint64.InstrumentProvider
method stubfunc (*meter) AsyncFloat64() asyncfloat64.InstrumentProvider
method stubfunc (*meter) SyncInt64() syncint64.InstrumentProvider
method stubfunc (*meter) SyncFloat64() syncfloat64.InstrumentProvider
method stubtype Option interface
to be passed toNew
and will configure the Providertype config struct
stubThe text was updated successfully, but these errors were encountered: