Get geoip database configuration API

edit

Get geoip database configuration API

edit

Returns information about one or more geoip database configurations.

resp = client.perform_request(
    "GET",
    "/_ingest/geoip/database/my-database-id",
)
print(resp)
const response = await client.transport.request({
  method: "GET",
  path: "/_ingest/geoip/database/my-database-id",
});
console.log(response);
GET /_ingest/geoip/database/my-database-id

Request

edit

GET /_ingest/geoip/database/<database>

GET /_ingest/geoip/database

Prerequisites

edit
  • If the Elasticsearch security features are enabled, you must have the manage cluster privilege to use this API.

Path parameters

edit
<database>

(Optional, string) Comma-separated list of database configuration IDs to retrieve. Wildcard (*) expressions are supported.

To get all database configurations, omit this parameter or use *.

Query parameters

edit
master_timeout
(Optional, time units) Period to wait for the master node. If the master node is not available before the timeout expires, the request fails and returns an error. Defaults to 30s. Can also be set to -1 to indicate that the request should never timeout.

Examples

edit

Get information for a specific geoip database configuration

edit
resp = client.perform_request(
    "GET",
    "/_ingest/geoip/database/my-database-id",
)
print(resp)
const response = await client.transport.request({
  method: "GET",
  path: "/_ingest/geoip/database/my-database-id",
});
console.log(response);
GET /_ingest/geoip/database/my-database-id

The API returns the following response:

{
  "databases" : [
    {
      "id" : "my-database-id",
      "version" : 1,
      "modified_date_millis" : 1723040276114,
      "database" : {
        "name" : "GeoIP2-Domain",
        "maxmind" : {
          "account_id" : "1234567"
        }
      }
    }
  ]
}