Slide 11
Slide 11 text
MongoDB Backend
● No additional metadata in the .gz
● Binary stores warn! and info!
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct SaveGzipBlobParams<'a> {
pub cmd: &'a str,
pub args: &'a str,
pub label: &'a str,
pub duration: &'a str,
pub uuid: &'a str,
pub file_path: &'a Path,
#[serde(with =
"bson_datetime_as_rfc3339_string")]
pub start_time: DateTime,
#[serde(with =
"bson_datetime_as_rfc3339_string")]
pub end_time: DateTime,
}