咱們經過Logstash收集的Nginx Access log中已經包含了客戶端IP的數據(remote_addr),可是隻有這個IP還不夠,要在Kibana的顯示請求來源的地理位置還須要藉助GeoIP數據庫來實現。GeoIP 是最多見的免費 IP 地址歸類查詢庫,同時也有收費版能夠採購。GeoIP 庫能夠根據 IP 地址提供對應的地域信息,包括國別,省市,經緯度等,對於可視化地圖和區域統計很是有用。java
另外GeoIP數據文件的準確性和geoip插件的性能仍是比較頭疼,對性能有要求的能夠看下@三斗室寫的JRuby 調用 maxmind-java 測試。linux
1、下載GeoIP數據庫git
# cd /etc/logstash/ # wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz # gzip -d GeoLiteCity.dat.gz
Linux系統MaxMind提供了GeoIP更新程序,能夠自動更新數據庫。CentOS能夠經過epel源來安裝 geoipupdate 。數據庫
修改配置文件 /etc/GeoIP.conf 中 ProductIds GeoLite2-City ,而後直接執行 geoipupdate ,便會自動下載並校驗數據庫文件。默認數據庫文件目錄爲: /usr/local/share/GeoIP ,能夠經過配置項 DatabaseDirectory /etc/logstash/ 更改數據庫文件目錄。瀏覽器
2、配置logstash,在filter中加入geoip配置便可post
if [message] !~ "^127\.|^192\.168\.|^172\.1[6-9]\.|^172\.2[0-9]\.|^172\.3[01]\.|^10\." { #排除私網地址 geoip { source => "message" #設置解析IP地址的字段 target => "geoip" #將geoip數據保存到一個字段內 database => "/usr/share/GeoIP/GeoLite2-City.mmdb" #IP地址數據庫 } }
獲得的結果以下:性能
"geoip" => { "ip" => "112.90.16.4", "country_code2" => "CN", "country_code3" => "CHN", "country_name" => "China", "continent_code" => "AS", "region_name" => "30", "city_name" => "Guangzhou", "latitude" => 23.11670000000001, "longitude" => 113.25, "timezone" => "Asia/Chongqing", "real_region_name" => "Guangdong", "location" => [ [0] 113.25, [1] 23.11670000000001 ] }
GeoIP 庫數據較多,若是你不須要這麼多內容,能夠經過 fields 選項指定本身所須要的。下例爲所有可選內容:測試
geoip { fields => ["city_name", "continent_code", "country_code2", "country_code3", "country_name", "dma_code", "ip", "latitude", "longitude", "postal_code", "region_name", "timezone"] }
須要注意的是:geoip.location 是 logstash 經過 latitude 和 longitude 額外生成的數據。因此,若是你是想要經緯度又不想重複數據的話,須要在geoip中配置: remove_field => ["[geoip][latitude]", "[geoip][longitude]"] 。spa
3、利用UserAgent顯示瀏覽器信息插件
Logstash中的 logstash-filter-useragent 插件能夠幫助咱們過濾出瀏覽器版本、型號以及系統版本。
if [user_agent] != "-" { useragent { target => "ua" source => "user_agent" } }
使用if語句,只有在 user_agent 字段不爲空時纔會使用該插件。
target 將過濾出來的 user agent 信息配置到單獨的字段中。
source 爲必填設置,設置爲包含 user agent 的字段。
實例:
user agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36
經過 logstash-filter-useragent 過濾出來的結果爲:
"ua" => { "patch" => "2883", "os" => "Windows 7", "major" => "55", "minor" => "0", "name" => "Chrome", "os_name" => "Windows 7", "device" => "Other" }