Stats
gives extended information and metrics about indexes and the MeiliSearch database.
Get stats of an index.
Variable | Description |
---|---|
index_uid | The index UID |
{
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldsDistribution": {
"poster": 19654,
"release_date": 19654,
"title": 19654,
"id": 19654,
"overview": 19654
}
}
Get stats of all indexes.
{
"databaseSize": 447819776,
"lastUpdate": "2019-11-15T11:15:22.092896Z",
"indexes": {
"movies": {
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldsDistribution": {
"poster": 19654,
"overview": 19654,
"title": 19654,
"id": 19654,
"release_date": 19654
}
},
"rangemovies": {
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldsDistribution": {
"overview": 19654,
"id": 19654,
"title": 19654
}
}
}
}