@@ -120,8 +120,6 @@ func (or *ObsReport) TracesDropped(ctx context.Context, numSpans int) {
120
120
}
121
121
122
122
// TracesInserted reports that the trace data was inserted.
123
- //
124
- // Deprecated: [v0.109.0] This method was not used in core/contrib and it's unclear when it should have been used.
125
123
func (or * ObsReport ) TracesInserted (ctx context.Context , numSpans int ) {
126
124
or .recordData (ctx , component .DataTypeTraces , int64 (0 ), int64 (0 ), int64 (0 ), int64 (numSpans ))
127
125
}
@@ -142,8 +140,6 @@ func (or *ObsReport) MetricsDropped(ctx context.Context, numPoints int) {
142
140
}
143
141
144
142
// MetricsInserted reports that the metrics were inserted.
145
- //
146
- // Deprecated: [v0.109.0] This method was not used in core/contrib and it's unclear when it should have been used.
147
143
func (or * ObsReport ) MetricsInserted (ctx context.Context , numPoints int ) {
148
144
or .recordData (ctx , component .DataTypeMetrics , int64 (0 ), int64 (0 ), int64 (0 ), int64 (numPoints ))
149
145
}
@@ -164,8 +160,6 @@ func (or *ObsReport) LogsDropped(ctx context.Context, numRecords int) {
164
160
}
165
161
166
162
// LogsInserted reports that the logs were inserted.
167
- //
168
- // Deprecated: [v0.109.0] This method was not used in core/contrib and it's unclear when it should have been used.
169
163
func (or * ObsReport ) LogsInserted (ctx context.Context , numRecords int ) {
170
164
or .recordData (ctx , component .DataTypeLogs , int64 (0 ), int64 (0 ), int64 (0 ), int64 (numRecords ))
171
165
}
0 commit comments