Skip to content

Commit 3b01a04

Browse files
authored
Revert "[processorhelper] deprecating unused methods (#11083)"
This reverts commit 3f9bc53.
1 parent 3ed205e commit 3b01a04

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

processor/processorhelper/obsreport.go

-6
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ func (or *ObsReport) TracesDropped(ctx context.Context, numSpans int) {
120120
}
121121

122122
// 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.
125123
func (or *ObsReport) TracesInserted(ctx context.Context, numSpans int) {
126124
or.recordData(ctx, component.DataTypeTraces, int64(0), int64(0), int64(0), int64(numSpans))
127125
}
@@ -142,8 +140,6 @@ func (or *ObsReport) MetricsDropped(ctx context.Context, numPoints int) {
142140
}
143141

144142
// 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.
147143
func (or *ObsReport) MetricsInserted(ctx context.Context, numPoints int) {
148144
or.recordData(ctx, component.DataTypeMetrics, int64(0), int64(0), int64(0), int64(numPoints))
149145
}
@@ -164,8 +160,6 @@ func (or *ObsReport) LogsDropped(ctx context.Context, numRecords int) {
164160
}
165161

166162
// 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.
169163
func (or *ObsReport) LogsInserted(ctx context.Context, numRecords int) {
170164
or.recordData(ctx, component.DataTypeLogs, int64(0), int64(0), int64(0), int64(numRecords))
171165
}

0 commit comments

Comments
 (0)