Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions docs/reference/lookup-enrichment.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,26 @@ $$$geoip-def$$$geoip filter
filter {
geoip {
source => "clientip"
target => "[source]"
}
}
```

After the geoip filter is applied, the event will be enriched with geoip fields. For example:

```json
filter {
geoip {
source => "clientip"
}
```json
"source" => {
"geo" => {
"country_name" => "France",
"country_iso_code" => "FR",
"continent_code" => "EU",
"location" => {
"lon" => 2.3387,
"lat" => 48.8582
},
"timezone" => "Europe/Paris"
},
"ip" => "82.67.74.30"
}
```

Expand Down
Loading