From d319d22ca977f43cf35440fed96dd8d3ae78f761 Mon Sep 17 00:00:00 2001 From: cthomas Date: Tue, 20 May 2025 18:36:23 -0700 Subject: [PATCH] feat: unexclude endpoints from tracing (#2294) --- letta/tracing.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/letta/tracing.py b/letta/tracing.py index b4304a6c..ec4db848 100644 --- a/letta/tracing.py +++ b/letta/tracing.py @@ -19,11 +19,11 @@ from opentelemetry.trace import Status, StatusCode tracer = trace.get_tracer(__name__) _is_tracing_initialized = False _excluded_v1_endpoints_regex: List[str] = [ - "^GET /v1/agents/(?P[^/]+)/messages$", - "^GET /v1/agents/(?P[^/]+)/context$", - "^GET /v1/agents/(?P[^/]+)/archival-memory$", - "^GET /v1/agents/(?P[^/]+)/sources$", - r"^POST /v1/voice-beta/.*/chat/completions$", + # "^GET /v1/agents/(?P[^/]+)/messages$", + # "^GET /v1/agents/(?P[^/]+)/context$", + # "^GET /v1/agents/(?P[^/]+)/archival-memory$", + # "^GET /v1/agents/(?P[^/]+)/sources$", + # r"^POST /v1/voice-beta/.*/chat/completions$", ]