mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-30 00:30:09 +00:00
* chore(lint): enforce and apply PEP 585 type hinting * Run fmt fixes * Fix all typing imports using some regex * Fix all typing written in string in tests * undo changes in the e2e tests * make e2e test use list instead of List * type fixes * remove type:ignore * pylint * Remove typing from Usage example comments * Remove typing from most of comments * try to fix e2e tests on comm PRs * fix * Add tests typing.List in to adjust test compatiplity - test/components/agents/test_state_class.py - test/components/converters/test_output_adapter.py - test/components/joiners/test_list_joiner.py * simplify pyproject * improve relnote --------- Co-authored-by: anakin87 <stefanofiorucci@gmail.com>
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import contextlib
|
|
import dataclasses
|
|
import uuid
|
|
from typing import Any, Iterator, Optional
|
|
|
|
from haystack.tracing import Span, Tracer
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class SpyingSpan(Span):
|
|
operation_name: str
|
|
parent_span: Optional[Span] = None
|
|
|
|
tags: dict[str, Any] = dataclasses.field(default_factory=dict)
|
|
|
|
trace_id: Optional[str] = dataclasses.field(default_factory=lambda: str(uuid.uuid4()))
|
|
span_id: Optional[str] = dataclasses.field(default_factory=lambda: str(uuid.uuid4()))
|
|
|
|
def set_tag(self, key: str, value: Any) -> None:
|
|
self.tags[key] = value
|
|
|
|
def get_correlation_data_for_logs(self) -> dict[str, Any]:
|
|
return {"trace_id": self.trace_id, "span_id": self.span_id}
|
|
|
|
def set_content_tag(self, key: str, value: Any) -> None:
|
|
"""
|
|
Set a content tag, but only if content tracing is enabled in the tracer.
|
|
"""
|
|
self.set_tag(key, value)
|
|
|
|
|
|
class SpyingTracer(Tracer):
|
|
def current_span(self) -> Optional[Span]:
|
|
return self.spans[-1] if self.spans else None
|
|
|
|
def __init__(self) -> None:
|
|
self.spans: list[SpyingSpan] = []
|
|
|
|
@contextlib.contextmanager
|
|
def trace(
|
|
self, operation_name: str, tags: Optional[dict[str, Any]] = None, parent_span: Optional[Span] = None
|
|
) -> Iterator[Span]:
|
|
new_span = SpyingSpan(operation_name, parent_span)
|
|
for key, value in (tags or {}).items():
|
|
new_span.set_tag(key, value)
|
|
|
|
self.spans.append(new_span)
|
|
|
|
yield new_span
|