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
f"Trace: Enqueuing event type={event['type']} for trace_id={trace_id}"
376
+
)
377
+
self._enqueue_ingestion_task(
378
+
event=event,
379
+
trace_id=trace_id,
380
+
sampling_name="trace",
381
+
force_sample=force_sample,
382
+
)
383
+
384
+
exceptFull:
385
+
langfuse_logger.warning(
386
+
"System overload: Trace ingestion queue has reached capacity (100,000 items). Trace update will be dropped. Consider increasing flush frequency or decreasing event volume."
387
+
)
388
+
389
+
return
390
+
exceptExceptionase:
391
+
langfuse_logger.error(
392
+
f"Unexpected error: Failed to process trace event. The trace update will be dropped. Error details: {e}"
0 commit comments