Function wasmer_api::query::get_app_logs_paginated

source ยท
pub async fn get_app_logs_paginated(
    client: &WasmerClient,
    name: String,
    owner: String,
    tag: Option<String>,
    start: OffsetDateTime,
    end: Option<OffsetDateTime>,
    watch: bool,
    streams: Option<Vec<LogStream>>,
) -> impl Stream<Item = Result<Vec<Log>, Error>> + '_
Expand description

Get pages of logs associated with an application that lie within the specified date range.

In contrast to [get_app_logs], this function collects the stream into a final vector.