Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions output/openapi/elasticsearch-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -84845,21 +84845,26 @@
"total_download_time": {
"$ref": "#/components/schemas/_types:DurationValueUnitMillis"
},
"database_count": {
"databases_count": {
"description": "Current number of databases available for use.",
"type": "number"
},
"skipped_updates": {
"description": "Total number of database updates skipped.",
"type": "number"
},
"expired_databases": {
"description": "Total number of databases not updated after 30 days",
"type": "number"
}
},
"required": [
"successful_downloads",
"failed_downloads",
"total_download_time",
"database_count",
"skipped_updates"
"databases_count",
"skipped_updates",
"expired_databases"
]
},
"ingest.geo_ip_stats:GeoIpNodeDatabases": {
Expand Down
20 changes: 16 additions & 4 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion specification/ingest/geo_ip_stats/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ export class GeoIpDownloadStatistics {
/** Total milliseconds spent downloading databases. */
total_download_time: DurationValue<UnitMillis>
/** Current number of databases available for use. */
database_count: integer
databases_count: integer
/** Total number of database updates skipped. */
skipped_updates: integer
/** Total number of databases not updated after 30 days */
expired_databases: integer
}

/** Downloaded databases for the node. The field key is the node ID. */
Expand Down