use crate::Client;
use crate::ClientResult;
pub struct Logs {
pub client: Client,
}
impl Logs {
#[doc(hidden)]
pub fn new(client: Client) -> Self {
Logs { client }
}
pub async fn get_page(
&self,
since: Option<chrono::DateTime<chrono::Utc>>,
until: Option<chrono::DateTime<chrono::Utc>>,
filter: &str,
q: &str,
limit: i64,
sort_order: &str,
after: &str,
) -> ClientResult<crate::Response<Vec<crate::types::LogEvent>>> {
let mut query_args: Vec<(String, String)> = Default::default();
if !after.is_empty() {
query_args.push(("after".to_string(), after.to_string()));
}
if !filter.is_empty() {
query_args.push(("filter".to_string(), filter.to_string()));
}
if limit > 0 {
query_args.push(("limit".to_string(), limit.to_string()));
}
if !q.is_empty() {
query_args.push(("q".to_string(), q.to_string()));
}
if let Some(date) = since {
query_args.push(("since".to_string(), date.to_rfc3339()));
}
if !sort_order.is_empty() {
query_args.push(("sortOrder".to_string(), sort_order.to_string()));
}
if let Some(date) = until {
query_args.push(("until".to_string(), date.to_rfc3339()));
}
let query_ = serde_urlencoded::to_string(&query_args).unwrap();
let url = self.client.url(&format!("/api/v1/logs?{}", query_), None);
self.client
.get(
&url,
crate::Message {
body: None,
content_type: None,
},
)
.await
}
pub async fn get_all(
&self,
since: Option<chrono::DateTime<chrono::Utc>>,
until: Option<chrono::DateTime<chrono::Utc>>,
filter: &str,
q: &str,
sort_order: &str,
) -> ClientResult<crate::Response<Vec<crate::types::LogEvent>>> {
let mut query_args: Vec<(String, String)> = Default::default();
if !filter.is_empty() {
query_args.push(("filter".to_string(), filter.to_string()));
}
if !q.is_empty() {
query_args.push(("q".to_string(), q.to_string()));
}
if let Some(date) = since {
query_args.push(("since".to_string(), date.to_rfc3339()));
}
if !sort_order.is_empty() {
query_args.push(("sortOrder".to_string(), sort_order.to_string()));
}
if let Some(date) = until {
query_args.push(("until".to_string(), date.to_rfc3339()));
}
let query_ = serde_urlencoded::to_string(&query_args).unwrap();
let url = self.client.url(&format!("/api/v1/logs?{}", query_), None);
self.client
.get_all_pages(
&url,
crate::Message {
body: None,
content_type: None,
},
)
.await
}
}