Stats
Path Variables
curl \
-X GET 'http://localhost:7700/indexes/movies/stats'
client.index('movies').getStats()
client.index('movies').get_stats()
$client->index('movies')->stats();
client.index('movies').stats
let stats: IndexStats = movies.get_stats().await.unwrap();
Response: 200 Ok
{
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldsDistribution": {
"poster": 19654,
"title": 19654,
"id": 19654,
}
}
Get stats of all indexes
/stats
Example
curl \
-X GET 'http://localhost:7700/stats'
client.stats()
$client->stats();
client.stats
client.Stats().GetAll()
let stats: ClientStats = client.get_stats().await.unwrap();
Response: 200 Ok
{
"databaseSize": 447819776,
"lastUpdate": "2019-11-15T11:15:22.092896Z",
"indexes": {
"movies": {
"numberOfDocuments": 19654,
"poster": 19654,
"overview": 19654,
"title": 19654,
"id": 19654,
"release_date": 19654
}
},
"rangemovies": {
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldsDistribution": {
"overview": 19654,
"id": 19654,
"title": 19654
}
}
}
}