统计
/stats
路由提供有关索引和 Meilisearch 数据库的扩展信息和指标。
统计对象
{
"databaseSize": 447819776,
"lastUpdate": "2019-11-15T11:15:22.092896Z",
"indexes": {
"movies": {
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldDistribution": {
"poster": 19654,
"overview": 19654,
"title": 19654,
"id": 19654,
"release_date": 19654
}
},
"books": {
"numberOfDocuments": 5,
"isIndexing": false,
"fieldDistribution": {
"id": 5,
"title": 5,
"author": 5,
"price": 5,
"genres": 5
}
}
}
}
名称 | 类型 | 描述 |
---|---|---|
databaseSize | 整数 | 数据库大小(以字节为单位) |
lastUpdate | 字符串 | 数据库上次更新时间,采用 RFC 3339 格式 |
indexes | 对象 | 包含数据库中每个索引的统计信息的对象 |
numberOfDocuments | 整数 | 索引中文档的总数 |
isIndexing | 布尔值 | 如果为 true ,则索引仍在处理文档,尝试搜索会导致未定义的行为。如果为 false ,则索引已完成处理,您可以开始搜索 |
fieldDistribution | 对象 | 显示索引中的每个字段以及该索引中包含该字段的文档总数 |
注意
fieldDistribution
不受 searchableAttributes
或 displayedAttributes
影响。即使某个字段未显示或可搜索,它仍将出现在 fieldDistribution
对象中。
获取所有索引的统计信息
GET/stats
获取所有索引的统计信息。
示例
curl \
-X GET 'https://127.0.0.1:7700/stats'
响应:200 Ok
{
"databaseSize": 447819776,
"lastUpdate": "2019-11-15T11:15:22.092896Z",
"indexes": {
"movies": {
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldDistribution": {
"poster": 19654,
"overview": 19654,
"title": 19654,
"id": 19654,
"release_date": 19654
}
},
"books": {
"numberOfDocuments": 5,
"isIndexing": false,
"fieldDistribution": {
"id": 5,
"title": 5,
"author": 5,
"price": 5,
"genres": 5
}
}
}
}
获取某个索引的统计信息
GET/indexes/{index_uid}/stats
获取某个索引的统计信息。
路径参数
名称 | 类型 | 描述 |
---|---|---|
index_uid * | 字符串 | 请求索引的 uid |
示例
curl \
-X GET 'https://127.0.0.1:7700/indexes/movies/stats'
响应:200 Ok
{
"numberOfDocuments": 19654,
"isIndexing": false,
"fieldDistribution": {
"poster": 19654,
"release_date": 19654,
"title": 19654,
"id": 19654,
"overview": 19654
}
}