-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogstash.conf
73 lines (64 loc) · 1.34 KB
/
logstash.conf
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
input
{
file
{
path => "{PATH}"
start_position => "beginning"
sincedb_path => "/dev/null"
file_completed_action => "log"
file_completed_log_path => "/root/logstash/ingest.log"
mode => "read"
}
}
filter
{
mutate
{
gsub => ["message", "[\u0000]", ""]
}
json
{
source => "message"
}
fingerprint
{
source => [ "message" ]
concatenate_sources => true
method => "MD5"
key => "fingerprint"
base64encode => true
target => "[@metadata][fingerprint]"
}
mutate
{
remove_field => ["message"]
}
if [sourceIPAddress]
{
geoip
{
source => "sourceIPAddress"
fields => ["city_name", "country_code2", "country_name", "latitude", "longitude"]
target => "ActorIP-Location"
}
mutate
{
rename =>
{
"[ActorIP-Location][latitude]" => "[ActorIP-Location][geo][lat]"
"[ActorIP-Location][longitude]" => "[ActorIP-Location][geo][lon]"
}
}
}
}
output
{
elasticsearch
{
hosts => "{URL}"
document_id => "%{[@metadata][fingerprint]}"
index => "aws-cloudtrail"
user => "elastic"
password => "{PASS}"
}
}