godap icon indicating copy to clipboard operation
godap copied to clipboard

The Data Analysis Pipeline

Results 4 godap issues
Sort by recently updated
recently updated
newest added

# What is this? This is a work in progress patch to support the Maxmind GeoIP2 database. This patch introduces two new filters: `geo_ip2_city` and `geo_ip2_isp`, which replace the now...

Currently in `dap`: ``` $ echo '{"id": 1, "info.name":"jon snow", "info.dead": false, "info.age": 29}' | dap json + expand info + json {"id":1,"info.name":"jon snow","info.dead":false,"info.age":29,"info":{"name":"jon snow","dead":false,"age":29}} ``` However trying go dap:...

Currently if someone was to download this warc file from dap: https://github.com/rapid7/dap/blob/master/samples/iawide.warc.bz2 The could parse this with `dap`: ``` $ bzcat iawide.warc.bz2 | dap warc + json | head -n...

Currently under usage: ``` $ go get github.com/rapid7/godap $ sudo bash # mkdir -p /var/lib/geoip && cd /var/lib/geoip && wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz && gunzip GeoLiteCity.dat.gz && mv GeoLiteCity.dat geoip.dat ``` However...