Weaviate · Schema

NodeStats

The summary of Weaviate's statistics.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
shardCount number The count of Weaviate's shards. To see this value, set `output` to `verbose`.
objectCount number The total number of objects in DB.
View JSON Schema on GitHub

JSON Schema

weaviate-nodestats-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NodeStats",
  "title": "NodeStats",
  "description": "The summary of Weaviate's statistics.",
  "properties": {
    "shardCount": {
      "type": "number",
      "format": "int",
      "description": "The count of Weaviate's shards. To see this value, set `output` to `verbose`."
    },
    "objectCount": {
      "type": "number",
      "format": "int64",
      "description": "The total number of objects in DB."
    }
  }
}