| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/opentracing-stubs/ |
Upload File : |
from _typeshed import Incomplete
from types import TracebackType
from typing import Any
from typing_extensions import Self
from .tracer import Tracer
class SpanContext:
EMPTY_BAGGAGE: dict[str, str]
@property
def baggage(self) -> dict[str, str]: ...
class Span:
def __init__(self, tracer: Tracer, context: SpanContext) -> None: ...
@property
def context(self) -> SpanContext: ...
@property
def tracer(self) -> Tracer: ...
def set_operation_name(self, operation_name: str) -> Self: ...
def finish(self, finish_time: float | None = None) -> None: ...
def set_tag(self, key: str, value: str | bool | float) -> Self: ...
def log_kv(self, key_values: dict[str, Any], timestamp: float | None = None) -> Self: ...
def set_baggage_item(self, key: str, value: str) -> Self: ...
def get_baggage_item(self, key: str) -> str | None: ...
def __enter__(self) -> Self: ...
def __exit__(
self, exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None
) -> None: ...
def log_event(self, event: Any, payload: Incomplete | None = None) -> Self: ...
def log(self, **kwargs: Any) -> Self: ...