1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub enum Priority {
    Emergency,
    Alert,
    Critical,
    Error,
    Warning,
    Notice,
    Informational,
    Debug,
    Trace,
    None,
}

#[derive(Serialize, Deserialize)]
pub struct Log {
    pub timestamp: DateTime<Utc>,

    pub priority: Priority,

    pub message: String,
}

impl Log {
    pub fn new(priority: Priority, message: String) -> Self {
        Self {
            timestamp: Utc::now(),
            priority,
            message,
        }
    }
}

#[derive(Serialize, Deserialize)]
pub struct LogRequest {
    pub logs: Vec<Log>,
}

impl LogRequest {
    pub fn new(logs: Vec<Log>) -> Self {
        Self {
            logs,
        }
    }
}