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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
use serde::Deserialize;
use std::fmt;
#[derive(Debug)]
pub enum TargetState {
Active,
Dropped,
Any,
}
impl fmt::Display for TargetState {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
TargetState::Active => write!(f, "active"),
TargetState::Dropped => write!(f, "dropped"),
TargetState::Any => write!(f, "any"),
}
}
}
#[derive(Debug, Copy, Clone, Deserialize)]
pub enum TargetHealth {
#[serde(alias = "up")]
Up,
#[serde(alias = "down")]
Down,
#[serde(alias = "unknown")]
Unknown,
}
impl fmt::Display for TargetHealth {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
TargetHealth::Up => write!(f, "up"),
TargetHealth::Down => write!(f, "down"),
TargetHealth::Unknown => write!(f, "unknown"),
}
}
}
#[derive(Debug, Copy, Clone, Deserialize)]
pub enum RuleHealth {
#[serde(alias = "ok")]
Good,
#[serde(alias = "err")]
Bad,
#[serde(alias = "unknown")]
Unknown,
}
impl fmt::Display for RuleHealth {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
RuleHealth::Good => write!(f, "ok"),
RuleHealth::Bad => write!(f, "err"),
RuleHealth::Unknown => write!(f, "unknown"),
}
}
}
#[derive(Debug, Copy, Clone, Deserialize)]
pub enum AlertState {
#[serde(alias = "inactive")]
Inactive,
#[serde(alias = "pending")]
Pending,
#[serde(alias = "firing")]
Firing,
}
impl fmt::Display for AlertState {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
AlertState::Inactive => write!(f, "inactive"),
AlertState::Pending => write!(f, "pending"),
AlertState::Firing => write!(f, "firing"),
}
}
}
#[derive(Debug)]
pub enum RuleType {
Alert,
Record,
}
impl fmt::Display for RuleType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
RuleType::Alert => write!(f, "alert"),
RuleType::Record => write!(f, "record"),
}
}
}
#[allow(clippy::enum_variant_names)]
#[derive(Debug, Clone, PartialEq)]
pub(crate) enum Label<'a> {
Equal((&'a str, &'a str)),
NotEqual((&'a str, &'a str)),
RegexEqual((&'a str, &'a str)),
RegexNotEqual((&'a str, &'a str)),
}
impl<'a> fmt::Display for Label<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
match self {
Label::Equal((k, v)) => write!(f, "{}=\"{}\"", k, v),
Label::NotEqual((k, v)) => write!(f, "{}!=\"{}\"", k, v),
Label::RegexEqual((k, v)) => write!(f, "{}=~\"{}\"", k, v),
Label::RegexNotEqual((k, v)) => write!(f, "{}!~\"{}\"", k, v),
}
}
}