Skip to main content

LogsClient

adaline.logs is the read-side counterpart to the Monitor write path. It lists recent traces as lightweight metadata and exposes two nested sub-clients for typed search over traces and spans. Every method is async.
The write-side — buffering and flushing traces and spans — lives on the Monitor, Trace, and Span classes, created via adaline.init_monitor(). LogsClient is strictly read / retroactive patch.

Access

The class is also exported directly:

Sub-clients

Types from adaline_api:

list()

List log traces in a project — lightweight metadata only (no span bodies).

Parameters

LogStatus and LogSort are string-alias enums re-exported from adaline.clients.retry.

Returns

ListLogsResponse with { data: list[TraceMetadata]; pagination: Pagination }. Span bodies are not included.

Example


See Also