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
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
- LogTracesClient — typed trace search + retroactive update
- LogSpansClient — typed span search with full bodies
- Monitor — write-side buffering and flushing
- Adaline.init_monitor
- API reference: List log traces