-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
parse_grok.rs
232 lines (202 loc) · 6.85 KB
/
parse_grok.rs
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
use std::collections::BTreeMap;
use std::fmt;
use std::sync::Arc;
use vrl::{
diagnostic::{Label, Span},
prelude::*,
};
#[derive(Debug)]
pub enum Error {
InvalidGrokPattern(grok::Error),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Error::InvalidGrokPattern(err) => write!(f, "{}", err.to_string()),
}
}
}
impl std::error::Error for Error {}
impl DiagnosticError for Error {
fn code(&self) -> usize {
109
}
fn labels(&self) -> Vec<Label> {
match self {
Error::InvalidGrokPattern(err) => {
vec![Label::primary(
format!("grok pattern error: {}", err.to_string()),
Span::default(),
)]
}
}
}
}
#[derive(Clone, Copy, Debug)]
pub struct ParseGrok;
impl Function for ParseGrok {
fn identifier(&self) -> &'static str {
"parse_grok"
}
fn parameters(&self) -> &'static [Parameter] {
&[
Parameter {
keyword: "value",
kind: kind::BYTES,
required: true,
},
Parameter {
keyword: "pattern",
kind: kind::BYTES,
required: true,
},
Parameter {
keyword: "remove_empty",
kind: kind::BOOLEAN,
required: false,
},
]
}
fn examples(&self) -> &'static [Example] {
&[Example {
title: "parse grok pattern",
source: indoc! {r#"
value = "2020-10-02T23:22:12.223222Z info Hello world"
pattern = "%{TIMESTAMP_ISO8601:timestamp} %{LOGLEVEL:level} %{GREEDYDATA:message}"
parse_grok!(value, pattern)
"#},
result: Ok(indoc! {r#"
{
"timestamp": "2020-10-02T23:22:12.223222Z",
"level": "info",
"message": "Hello world"
}
"#}),
}]
}
fn compile(
&self,
_state: &state::Compiler,
_ctx: &FunctionCompileContext,
mut arguments: ArgumentList,
) -> Compiled {
let value = arguments.required("value");
let pattern = arguments
.required_literal("pattern")?
.to_value()
.try_bytes_utf8_lossy()
.expect("grok pattern not bytes")
.into_owned();
let mut grok = grok::Grok::with_patterns();
let pattern = Arc::new(
grok.compile(&pattern, true)
.map_err(|e| Box::new(Error::InvalidGrokPattern(e)) as Box<dyn DiagnosticError>)?,
);
let remove_empty = arguments
.optional("remove_empty")
.unwrap_or_else(|| expr!(false));
Ok(Box::new(ParseGrokFn {
value,
pattern,
remove_empty,
}))
}
}
#[derive(Clone, Debug)]
struct ParseGrokFn {
value: Box<dyn Expression>,
// Wrapping pattern in an Arc, as cloning the pattern could otherwise be expensive.
pattern: Arc<grok::Pattern>,
remove_empty: Box<dyn Expression>,
}
impl Expression for ParseGrokFn {
fn resolve(&self, ctx: &mut Context) -> Resolved {
let value = self.value.resolve(ctx)?;
let bytes = value.try_bytes_utf8_lossy()?;
let remove_empty = self.remove_empty.resolve(ctx)?.try_boolean()?;
match self.pattern.match_against(&bytes) {
Some(matches) => {
let mut result = BTreeMap::new();
for (name, value) in matches.iter() {
if !remove_empty || !value.is_empty() {
result.insert(name.to_string(), Value::from(value));
}
}
Ok(Value::from(result))
}
None => Err("unable to parse input with grok pattern".into()),
}
}
fn type_def(&self, _: &state::Compiler) -> TypeDef {
TypeDef::new().fallible().object::<(), Kind>(map! {
(): Kind::all(),
})
}
}
#[cfg(test)]
mod test {
use super::*;
use shared::btreemap;
test_function![
parse_grok => ParseGrok;
invalid_grok {
args: func_args![ value: "foo",
pattern: "%{NOG}"],
want: Err("The given pattern definition name \"NOG\" could not be found in the definition map"),
tdef: TypeDef::new().fallible().object::<(), Kind>(map! {
(): Kind::all(),
}),
}
error {
args: func_args![ value: "an ungrokkable message",
pattern: "%{TIMESTAMP_ISO8601:timestamp} %{LOGLEVEL:level} %{GREEDYDATA:message}"],
want: Err("unable to parse input with grok pattern"),
tdef: TypeDef::new().fallible().object::<(), Kind>(map! {
(): Kind::all(),
}),
}
error2 {
args: func_args![ value: "2020-10-02T23:22:12.223222Z an ungrokkable message",
pattern: "%{TIMESTAMP_ISO8601:timestamp} %{LOGLEVEL:level} %{GREEDYDATA:message}"],
want: Err("unable to parse input with grok pattern"),
tdef: TypeDef::new().fallible().object::<(), Kind>(map! {
(): Kind::all(),
}),
}
parsed {
args: func_args![ value: "2020-10-02T23:22:12.223222Z info Hello world",
pattern: "%{TIMESTAMP_ISO8601:timestamp} %{LOGLEVEL:level} %{GREEDYDATA:message}"],
want: Ok(Value::from(btreemap! {
"timestamp" => "2020-10-02T23:22:12.223222Z",
"level" => "info",
"message" => "Hello world",
})),
tdef: TypeDef::new().fallible().object::<(), Kind>(map! {
(): Kind::all(),
}),
}
parsed2 {
args: func_args![ value: "2020-10-02T23:22:12.223222Z",
pattern: "(%{TIMESTAMP_ISO8601:timestamp}|%{LOGLEVEL:level})"],
want: Ok(Value::from(btreemap! {
"timestamp" => "2020-10-02T23:22:12.223222Z",
"level" => "",
})),
tdef: TypeDef::new().fallible().object::<(), Kind>(map! {
(): Kind::all(),
}),
}
remove_empty {
args: func_args![ value: "2020-10-02T23:22:12.223222Z",
pattern: "(%{TIMESTAMP_ISO8601:timestamp}|%{LOGLEVEL:level})",
remove_empty: true,
],
want: Ok(Value::from(
btreemap! { "timestamp" => "2020-10-02T23:22:12.223222Z" },
)),
tdef: TypeDef::new().fallible().object::<(), Kind>(map! {
(): Kind::all(),
}),
}
];
}