Bases: Protocol[MsgType, PublishCommandType_contra]
messaging_system instance-attribute
get_consume_attrs_from_message
get_consume_attrs_from_message(
msg: StreamMessage[MsgType],
) -> dict[str, Any]
Source code in faststream/opentelemetry/provider.py
| def get_consume_attrs_from_message(
self,
msg: "StreamMessage[MsgType]",
) -> dict[str, Any]: ...
|
get_consume_destination_name
get_consume_destination_name(
msg: StreamMessage[MsgType],
) -> str
Source code in faststream/opentelemetry/provider.py
| def get_consume_destination_name(
self,
msg: "StreamMessage[MsgType]",
) -> str: ...
|
get_publish_attrs_from_cmd
get_publish_attrs_from_cmd(
cmd: PublishCommandType_contra,
) -> dict[str, Any]
Source code in faststream/opentelemetry/provider.py
| def get_publish_attrs_from_cmd(
self,
cmd: PublishCommandType_contra,
) -> dict[str, Any]: ...
|
get_publish_destination_name
get_publish_destination_name(
cmd: PublishCommandType_contra,
) -> str
Source code in faststream/opentelemetry/provider.py
| def get_publish_destination_name(
self,
cmd: PublishCommandType_contra,
) -> str: ...
|