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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
|
# UDF
> The functions for projection processor
## Function of content
- [Asn Lookup](#asn-lookup)
- [Base64 Decode](#base64-decode)
- [Current Unix Timestamp](#current-unix-timestamp)
- [Domain](#domain)
- [Drop](#drop)
- [Eval](#eval)
- [From Unix Timestamp](#from-unix-timestamp)
- [Generate String Array](#generate-string-array)
- [GeoIP Lookup](#geoip-lookup)
- [JSON Extract](#json-extract)
- [Path Combine](#path-combine)
- [Rename](#rename)
- [Snowflake ID](#snowflake-id)
- [String Joiner](#string-joiner)
- [Unix Timestamp Converter](#unix-timestamp-converter)
## Description
UDF(User Defined Function) is used to extend the functions of projection processor. The UDF is a part of the processing pipeline. It can be used in the pre-processing pipeline, processing pipeline, and post-processing pipeline.
## UDF Definition
A UDF includes the following parts: name, event(processing data), context, evaluate function, open function, and close function.
- name: Function name, with uppercase words separated by underscores, used for function registration.
- event: The data to be processed. It is organized in a Map<String, Object> structure.
- context: Function context, used to store the state of the function. Including the following parameters:
- `filter`: Filter expression, string type. It is used to filter events that need to processed by the function. The expression is written in Aviator expression language. For example, `event.server_ip == '.
- `lookup_fields`: The fields that need to be used as lookup keys. It is an array of string type. For example, `['server_ip', 'client_ip']`.
- `output_fields`: The fields are used to append the result to the event. It is an array of string type. For example, `['server_ip', 'client_ip']`. If the field already exists in the event, the value will be overwritten.
- `parameters`: Custom parameters. It is a Map<String, Object> type.
- evaluate function: The function to process the event. It is a function that returns a Map<String, Object> type.
- open function: Initialize the resources used by the function.
- close function: Release the resources used by the function.
### Functions
Function define common parameters: `filter`, `lookup_fields`, `output_fields`, `parameters`, and will return a Map<String, Object> value of the event.
``` FUNCTION_NAME(filter, lookup_fields, output_fields[, parameters])```
### Asn Lookup
Asn lookup function is used to lookup the asn information by ip address. You need to host the `.mmdb` database file from Knowledge Base Repository.
```ASN_LOOKUP(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required
- output_fields: required
- parameters: required
- kb_name: required. The name of the knowledge base.
- option: required. Now only support `IP_TO_ASN`.
Example:
```yaml
- function: ASN_LOOKUP
lookup_fields: [client_ip]
output_fields: [client_asn]
parameters:
kb_name: tsg_ip_asn
option: IP_TO_ASN
```
### Base64 Decode
Base64 decode function is used to decode the base64 encoded string.
```BASE64_DECODE(filter, output_fields[, parameters])```
- filter: optional
- lookup_fields: not required
- output_fields: required
- parameters: required
- value_field: `<String>` required.
- charset_field:`<String>` optional. Default is `UTF-8`.
Example:
```yaml
- function: BASE64_DECODE
output_fields: [mail_attachment_name]
parameters:
value_field: mail_attachment_name
charset_field: mail_attachment_name_charset
```
### Current Unix Timestamp
Current unix timestamp function is used to get the current unix timestamp.
```CURRENT_UNIX_TIMESTAMP(output_fields[, parameters])```
- filter: not required
- lookup_fields: not required
- output_fields: required
- parameters: optional
- precision: `<String>` optional. Default is `seconds`. Enum: `milliseconds`, `seconds`.
Example:
```yaml
- function: CURRENT_UNIX_TIMESTAMP
output_fields: [recv_time]
parameters:
precision: seconds
```
### Domain
Domain function is used to extract the domain from the url.
```DOMAIN(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required. Support more than one fields. All fields will be processed from left to right, and the result will be overwritten if the field processed value is not null.
- output_fields: required
- parameters: required
- option: `<String>` required. Enum: `TOP_LEVEL_DOMAIN`, `FIRST_SIGNIFICANT_SUBDOMAIN`.
#### Option
- `TOP_LEVEL_DOMAIN` is used to extract the top level domain from the url. For example, `www.abc.com` will be extracted to `com`.
- `FIRST_SIGNIFICANT_SUBDOMAIN` is used to extract the first significant subdomain from the url. For example, `www.abc.com` will be extracted to `abc.com`.
Example:
```yaml
- function: DOMAIN
lookup_fields: [http_host, ssl_sni, quic_sni]
output_fields: [server_domain]
parameters:
option: FIRST_SIGNIFICANT_SUBDOMAIN
```
### Drop
Drop function is used to filter the event. If the filter expression is true, the event will be dropped. Otherwise, the event will be passed to downstream.
```DROP(filter)```
- filter: required
- lookup_fields: not required
- output_fields: not required
- parameters: not required
Example:
```yaml
- function: DROP
filter: event.server_ip == '4.4.4.4'
```
### Eval
Eval function is used to adds or removes fields from events by evaluating an value expression.
```EVAL(filter, output_fields[, parameters])```
- filter: optional
- lookup_fields: not required
- output_fields: required
- parameters: required
- value_expression: `<String>` required. Enter a value expression to set the field’s value – this can be a constant.
Example 1:
Add a field `ingestion_time` with value `recv_time`:
```yaml
- function: EVAL
output_fields: [ingestion_time]
parameters:
value_expression: recv_time
```
Example 2:
If the value of `direction` is `69`, the value of `internal_ip` will be `client_ip`, otherwise the value of `internal_ip` will be `server_ip`.
```yaml
- function: EVAL
output_fields: [internal_ip]
parameters:
value_expression: 'direction=69 ? client_ip : server_ip'
```
### From Unix Timestamp
From unix timestamp function is used to convert the unix timestamp to date time string. The default time zone is UTC+0.
```FROM_UNIX_TIMESTAMP(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required
- output_fields: required
- parameters: optional
- precision: `<String>` optional. Default is `seconds`. Enum: `milliseconds`, `seconds`.
#### Precision
- `milliseconds` is used to convert the unix timestamp to milliseconds date time string. For example, `1619712000` will be converted to `2021-04-30 00:00:00.000`.
- `seconds` is used to convert the unix timestamp to seconds date time string. For example, `1619712000` will be converted to `2021-04-30 00:00:00`.
Example:
```yaml
- function: FROM_UNIX_TIMESTAMP
lookup_fields: [recv_time]
output_fields: [recv_time_string]
parameters:
precision: seconds
```
### Generate String Array
Generate string array function is used to merge multiple fields into a string array. The merged field may be a string or a string array.
```GENERATE_STRING_ARRAY(filter, lookup_fields, output_fields)```
- filter: optional
- lookup_fields: required. more than one fields.
- output_fields: required
- parameters: not required
Example:
```yaml
- function: GENERATE_STRING_ARRAY
lookup_fields: [http_host, ssl_sni, quic_sni]
output_fields: [server_domains]
```
### GeoIP Lookup
GeoIP lookup function is used to lookup the geoip information by ip address. You need to host the `.mmdb` database file from Knowledge Base Repository.
```GEOIP_LOOKUP(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required
- output_fields: optional
- parameters: required
- kb_name: `<String>` required. The name of the knowledge base.
- option: `<String>` required. Enum: `IP_TO_COUNTRY`, `IP_TO_PROVINCE`, `IP_TO_CITY`, `IP_TO_SUBDIVISION_ADDR`, `IP_TO_DETAIL`, `IP_TO_LATLNG`, `IP_TO_PROVIDER`, `IP_TO_JSON`, `IP_TO_OBJECT`.
- geolocation_field_mapping : `<Map<String, String>>` optional. The option is required when the option is `IP_TO_OBJECT`. The mapping of the geolocation fields. The key is the field name of the knowledge base , and the value is the field name of the event.
- COUNTRY: `<String>` optional.
- PROVINCE: `<String>` optional.
- CITY: `<String>` optional.
- LONGITUDE: `<String>` optional.
- LATITUDE: `<String>` optional.
- ISP: `<String>` optional.
- ORGANIZATION: `<String>` optional.
#### Option
- `IP_TO_COUNTRY` is used to lookup the country or region information by ip address.
- `IP_TO_PROVINCE` is used to lookup the province or state information by ip address.
- `IP_TO_CITY` is used to lookup the city information by ip address.
- `IP_TO_SUBDIVISION_ADDR` is used to lookup the subdivision address information by ip address.
- `IP_TO_DETAIL` is used to lookup the above four levels of information by ip address. It separated by `.`.
- `IP_TO_LATLNG` is used to lookup the latitude and longitude information by ip address. It separated by `,`.
- `IP_TO_PROVIDER` is used to lookup the provider information by ip address.
- `IP_TO_JSON` is used to lookup the above information by ip address. The result is a json string.
- `IP_TO_OBJECT` is used to lookup the above information by ip address. The result is a `LocationResponse` object.
#### GeoLocation Field Mapping
- `COUNTRY` is used to map the country information to the event field.
- `PROVINCE` is used to map the province information to the event field.
- `CITY` is used to map the city information to the event field.
- `LONGITUDE` is used to map the longitude information to the event field.
- `LATITUDE` is used to map the latitude information to the event field.
- `ISP` is used to map the isp information to the event field.
- `ORGANIZATION` is used to map the organization information to the event field.
Example:
```yaml
- function: GEOIP_LOOKUP
lookup_fields: [ client_ip ]
output_fields: [ client_geolocation ]
parameters:
kb_name: tsg_ip_location
option: IP_TO_DETAIL
```
### JSON Extract
JSON extract function is used to extract the value from json string.
```JSON_EXTRACT(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required
- output_fields: required
- parameters: required
- value_expression: `<String>` required. The json path expression.
Example:
```yaml
- function: JSON_EXTRACT
lookup_fields: [ device_tag ]
output_fields: [ device_group ]
parameters:
value_expression: $.tags[?(@.tag=='device_group')][0].value
```
### Path Combine
Path combine function is used to combine the file path. The path value can be configuration parameter with prefix `props.` or a constant string.
```PATH_COMBINE(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required
- output_fields: required
- parameters: required
- path: `<Array>` required.
Example:
```yaml
- function: PATH_COMBINE
lookup_fields: [ packet_capture_file ]
output_fields: [ packet_capture_file ]
parameters:
path: [ props.hos.path, props.hos.bucket.name.traffic_file, packet_capture_file ]
```
### Rename
Rename function is used to rename the field name.
```RENAME(filter, lookup_fields, output_fields)```
- filter: optional
- lookup_fields: required
- output_fields: required
- parameters: not required
Example:
```yaml
- function: RENAME
lookup_fields: [http_domain]
output_fields: [server_domain]
```
### Snowflake ID
Snowflake ID function is used to generate the snowflake id. The snowflake id is a 64-bit integer. The snowflake id is composed of the following parts:
- 1 bit sign bit. The highest bit is 0.
- 39 bits timestamp. The maximum timestamp that can be represented using 39 bits is 2^39-1 or 549755813887, which comes out to be 17 years, 1 month, 7 days, 20 hours, 31 minutes and 35 seconds. That gives us 17 years with respect to a custom epoch.
- 13 bits machine id. 8 bits for the worker id and 5 bits for the datacenter id.
- 11 bits sequence number. The maximum sequence number is 2^11-1 or 2047, which means that a maximum of 2047 IDs can be generated in the same milliseconds in the same machine.
```SNOWFLAKE_ID(filter, output_fields[, parameters])```
- filter: optional
- lookup_fields: not required
- output_fields: required
- parameters: optional
- data_center_id_num: `<Integer>` optional. Default is `0`, range is `0-31`.
Example:
```yaml
- function: SNOWFLAKE_ID
output_fields: [log_id]
parameters:
data_center_id_num: 1
```
### String Joiner
String joiner function joins multiple string fields using a delimiter, prefix, and suffix.
```STRING_JOINER(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required. Support more than one fields.
- output_fields: required
- parameters: optional
- delimiter: `<String>` optional. Default is `,`.
- prefix: `<String>` optional. Default is empty string.
- suffix: `<String>` optional. Default is empty string.
Example:
```yaml
- function: STRING_JOINER
lookup_fields: [http_host, ssl_sni, quic_sni]
output_fields: [server_domains]
parameters:
delimiter: ','
prefix: '['
suffix: ']'
```
### Unix Timestamp Converter
Unix timestamp converter function is used to convert the unix timestamp precision.
```UNIX_TIMESTAMP_CONVERTER(filter, lookup_fields, output_fields[, parameters])```
- filter: optional
- lookup_fields: required
- output_fields: required
- parameters: required
- precision: `<String>` required. Enum: `milliseconds`, `seconds`.
Example:
_`__timestamp` Internal field, from source ingestion time or current unix timestamp._
```yaml
- function: UNIX_TIMESTAMP_CONVERTER
lookup_fields: [__timestamp]
output_fields: [recv_time]
parameters:
precision: seconds
```
|