Qdrant · Schema

MessageSendErrors

Message send failures for a particular peer

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
count integer
latest_error string
latest_error_timestamp string Timestamp of the latest error
View JSON Schema on GitHub

JSON Schema

qdrant-messagesenderrors-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageSendErrors",
  "title": "MessageSendErrors",
  "description": "Message send failures for a particular peer",
  "type": "object",
  "required": [
    "count"
  ],
  "properties": {
    "count": {
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "latest_error": {
      "type": "string",
      "nullable": true
    },
    "latest_error_timestamp": {
      "description": "Timestamp of the latest error",
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}