get_document_statistics
Retrieve real-time statistics for a collaborative document, including active connections and connected IPs, to monitor usage and activity effectively.
Instructions
Get real-time statistics for a specific document including current connections and connected IPs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the document to get statistics for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "ID of the document to get statistics for",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}