scouter_types/archive/types.rs
1use chrono::{DateTime, Utc};
2use serde::Serialize;
3
4#[derive(Debug, PartialEq, Clone, Serialize)]
5pub enum StorageType {
6 Google,
7 Aws,
8 Local,
9 Azure,
10}
11
12#[derive(Debug, PartialEq, Default)]
13pub struct ArchiveRecord {
14 pub created_at: DateTime<Utc>,
15 pub custom: bool,
16 pub psi: bool,
17 pub spc: bool,
18 pub llm_drift: bool,
19 pub llm_metric: bool,
20}