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
message = "BatchLogProcessor dropped a LogRecord due to queue full/internal errors. No further log will be emitted for further drops until Shutdown. During Shutdown time, a log will be emitted with exact count of total logs dropped.");
348
+
message = "BatchLogProcessor dropped a LogRecord due to queue full. No further log will be emitted for further drops until Shutdown. During Shutdown time, a log will be emitted with exact count of total logs dropped.");
349
349
}
350
350
}
351
351
Err(mpsc::TrySendError::Disconnected(_)) => {
@@ -378,9 +378,9 @@ impl LogProcessor for BatchLogProcessor {
378
378
// If the control message could not be sent, emit a warning.
message = "Control message to flush the worker thread could not be sent as the control channel is full. This can occur if user repeatedily calls force_flush without finishing the previous call."
381
+
message = "Control message to flush the worker thread could not be sent as the control channel is full. This can occur if user repeatedily calls force_flush/shutdown without finishing the previous call."
382
382
);
383
-
LogResult::Err(LogError::Other("ForceFlush cannot be performed as Control channel is full. This can occur if user repeatedily calls force_flush without finishing the previous call.".into()))
383
+
LogResult::Err(LogError::Other("ForceFlush cannot be performed as Control channel is full. This can occur if user repeatedily calls force_flush/shutdown without finishing the previous call.".into()))
384
384
}
385
385
Err(mpsc::TrySendError::Disconnected(_)) => {
386
386
// Given background thread is the only receiver, and it's
@@ -406,7 +406,7 @@ impl LogProcessor for BatchLogProcessor {
406
406
name:"BatchLogProcessor.LogsDropped",
407
407
dropped_logs_count = dropped_logs,
408
408
max_queue_size = max_queue_size,
409
-
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."
409
+
message = "Logs were dropped due to a queue being full. 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."
410
410
);
411
411
}
412
412
@@ -444,9 +444,9 @@ impl LogProcessor for BatchLogProcessor {
444
444
// If the control message could not be sent, emit a warning.
message = "Control message to shutdown the worker thread could not be sent as the control channel is full. This can occur if user repeatedily calls force_flush without finishing the previous call."
447
+
message = "Control message to shutdown the worker thread could not be sent as the control channel is full. This can occur if user repeatedily calls force_flush/shutdown without finishing the previous call."
448
448
);
449
-
LogResult::Err(LogError::Other("Shutdown cannot be performed as Control channel is full. This can occur if user repeatedily calls force_flush without finishing the previous call.".into()))
449
+
LogResult::Err(LogError::Other("Shutdown cannot be performed as Control channel is full. This can occur if user repeatedily calls force_flush/shutdown without finishing the previous call.".into()))
450
450
}
451
451
Err(mpsc::TrySendError::Disconnected(_)) => {
452
452
// Given background thread is the only receiver, and it's
0 commit comments