Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/daily_check_issue_and_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ jobs:
close-pr-message: "This PR was closed because it has been stalled for 7 days with no activity."
repo-token: ${{ secrets.ACTION_TOKEN }}
start-date: "2025-03-01T00:00:00Z"
exempt-issue-labels: "Backlog"
3 changes: 2 additions & 1 deletion studio-backend/app/routers/llmtraces_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ async def list_trace_ids(namespace: str):
SELECT DISTINCT tts.TraceId, tts.Start, tts.End
FROM otel.otel_traces_trace_id_ts AS tts
INNER JOIN otel.otel_traces AS ot ON tts.TraceId = ot.TraceId
WHERE ot.ResourceAttributes['k8s.namespace.name'] = '%(namespace)s'
WHERE ot.ResourceAttributes['k8s.namespace.name'] = %(namespace)s
"""
print(f"Query: {query}")
result = client.execute(query, {'namespace': namespace})

if not result:
Expand Down
Loading