Get geoip databases statistics
Get license checks and download status of Geoip filter plugin.
Query parameters
-
pretty
boolean If you append
?pretty=true
to the request, the JSON returned will be pretty formatted. Use it for debugging only!
GET
/_node/stats/geoip_download_manager
curl \
--request GET 'http://api.example.com/_node/stats/geoip_download_manager' \
--user "username:password"
Response examples (200)
{
"geoip_download_manager": {
"database": {
"ASN": {
"status": "init",
"fail_check_in_days": 42,
"last_updated_at": "2025-05-04T09:42:00Z"
},
"CITY": {
"status": "init",
"fail_check_in_days": 42,
"last_updated_at": "2025-05-04T09:42:00Z"
}
},
"download_stats": {
"successes": 42,
"failures": 42,
"last_checked_at": "2025-05-04T09:42:00Z",
"status": "succeeded"
}
}
}