@@ -191,55 +191,79 @@ type Int64Counter struct{ embedded.Int64Counter }
191191// Add performs no operation.
192192func (Int64Counter ) Add (context.Context , int64 , ... metric.AddOption ) {}
193193
194+ // Remove performs no operation.
195+ func (Int64Counter ) Remove (context.Context , ... metric.MeasurementOption ) {}
196+
194197// Float64Counter is an OpenTelemetry Counter used to record float64
195198// measurements. It produces no telemetry.
196199type Float64Counter struct { embedded.Float64Counter }
197200
198201// Add performs no operation.
199202func (Float64Counter ) Add (context.Context , float64 , ... metric.AddOption ) {}
200203
204+ // Remove performs no operation.
205+ func (Float64Counter ) Remove (context.Context , ... metric.MeasurementOption ) {}
206+
201207// Int64UpDownCounter is an OpenTelemetry UpDownCounter used to record int64
202208// measurements. It produces no telemetry.
203209type Int64UpDownCounter struct { embedded.Int64UpDownCounter }
204210
205211// Add performs no operation.
206212func (Int64UpDownCounter ) Add (context.Context , int64 , ... metric.AddOption ) {}
207213
214+ // Remove performs no operation.
215+ func (Int64UpDownCounter ) Remove (context.Context , ... metric.MeasurementOption ) {}
216+
208217// Float64UpDownCounter is an OpenTelemetry UpDownCounter used to record
209218// float64 measurements. It produces no telemetry.
210219type Float64UpDownCounter struct { embedded.Float64UpDownCounter }
211220
212221// Add performs no operation.
213222func (Float64UpDownCounter ) Add (context.Context , float64 , ... metric.AddOption ) {}
214223
224+ // Remove performs no operation.
225+ func (Float64UpDownCounter ) Remove (context.Context , ... metric.MeasurementOption ) {}
226+
215227// Int64Histogram is an OpenTelemetry Histogram used to record int64
216228// measurements. It produces no telemetry.
217229type Int64Histogram struct { embedded.Int64Histogram }
218230
219231// Record performs no operation.
220232func (Int64Histogram ) Record (context.Context , int64 , ... metric.RecordOption ) {}
221233
234+ // Remove performs no operation.
235+ func (Int64Histogram ) Remove (context.Context , ... metric.MeasurementOption ) {}
236+
222237// Float64Histogram is an OpenTelemetry Histogram used to record float64
223238// measurements. It produces no telemetry.
224239type Float64Histogram struct { embedded.Float64Histogram }
225240
226241// Record performs no operation.
227242func (Float64Histogram ) Record (context.Context , float64 , ... metric.RecordOption ) {}
228243
244+ // Remove performs no operation.
245+ func (Float64Histogram ) Remove (context.Context , ... metric.MeasurementOption ) {}
246+
229247// Int64Gauge is an OpenTelemetry Gauge used to record instantaneous int64
230248// measurements. It produces no telemetry.
231249type Int64Gauge struct { embedded.Int64Gauge }
232250
233251// Record performs no operation.
234252func (Int64Gauge ) Record (context.Context , int64 , ... metric.RecordOption ) {}
235253
254+ // Remove performs no operation.
255+ func (Int64Gauge ) Remove (context.Context , ... metric.MeasurementOption ) {}
256+
236257// Float64Gauge is an OpenTelemetry Gauge used to record instantaneous float64
237258// measurements. It produces no telemetry.
238259type Float64Gauge struct { embedded.Float64Gauge }
239260
240261// Record performs no operation.
241262func (Float64Gauge ) Record (context.Context , float64 , ... metric.RecordOption ) {}
242263
264+ // Remove performs no operation.
265+ func (Float64Gauge ) Remove (context.Context , ... metric.MeasurementOption ) {}
266+
243267// Int64ObservableCounter is an OpenTelemetry ObservableCounter used to record
244268// int64 measurements. It produces no telemetry.
245269type Int64ObservableCounter struct {
0 commit comments