Skip to content
Snippets Groups Projects

Resolve "Add monitoring of traces based on OpenTelemetry"

Merged Daniel Göbel requested to merge feature/57-add-monitoring-of-traces into development
6 files
+ 21
9
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -220,7 +220,7 @@ async def start_arbitrary_workflow(
if not settings.DEV_SYSTEM: # pragma: no cover
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Not available")
current_span = trace.get_current_span()
current_span.set_attribute("repository_url", workflow_execution_in.repository_url)
current_span.set_attribute("repository_url", str(workflow_execution_in.repository_url))
if workflow_execution_in.token is not None:
current_span.set_attribute("private_repository", True)
if workflow_execution_in.mode is not None:
Loading