Skip to content

Commit 35614a9

Browse files
Apply suggestions from code review
Co-authored-by: Utkarsh Umesan Pillai <[email protected]>
1 parent f1d5142 commit 35614a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

opentelemetry-sdk/src/logs/log_processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ impl<R: RuntimeChannel> LogProcessor for BatchLogProcessor<R> {
207207
name: "BatchLogProcessor.LogsDropped",
208208
dropped_logs_count = dropped_logs,
209209
max_queue_size = max_queue_size,
210-
message = "Logs were dropped due to a queue being full or other error. The count represents the total count of lost dropped in the lifetime of this BatchLogProcessor. Consider increasing the queue size and/or decrease delay between intervals."
210+
message = "Logs were dropped due to a queue being full or other error. The count represents the total count of log records dropped in the lifetime of this BatchLogProcessor. Consider increasing the queue size and/or decrease delay between intervals."
211211
);
212212
}
213213

opentelemetry-sdk/src/trace/span_processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ impl<R: RuntimeChannel> SpanProcessor for BatchSpanProcessor<R> {
286286
name: "BatchSpanProcessor.Shutdown",
287287
dropped_spans = dropped_spans,
288288
max_queue_size = max_queue_size,
289-
message = "Spans were dropped due to a full or closed queue. The count represents the total count of lost logs in the lifetime of the BatchLogProcessor. Consider increasing the queue size and/or decrease delay between intervals."
289+
message = "Spans were dropped due to a full or closed queue. The count represents the total count of span records dropped in the lifetime of the BatchLogProcessor. Consider increasing the queue size and/or decrease delay between intervals."
290290
);
291291
}
292292

0 commit comments

Comments
 (0)