We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb5634 commit 23d06e6Copy full SHA for 23d06e6
docs/reference/lookup-enrichment.md
@@ -65,17 +65,26 @@ $$$geoip-def$$$geoip filter
65
filter {
66
geoip {
67
source => "clientip"
68
+ target => "[source]"
69
}
70
71
```
72
73
After the geoip filter is applied, the event will be enriched with geoip fields. For example:
74
- ```json
75
- filter {
76
- geoip {
77
- source => "clientip"
78
- }
+ ```json
+ "source" => {
+ "geo" => {
+ "country_name" => "France",
79
+ "country_iso_code" => "FR",
80
+ "continent_code" => "EU",
81
+ "location" => {
82
+ "lon" => 2.3387,
83
+ "lat" => 48.8582
84
+ },
85
+ "timezone" => "Europe/Paris"
86
87
+ "ip" => "82.67.74.30"
88
89
90
0 commit comments