action ably_get_stats { label: "Retrieve usage statistics for an application" description: "The Ably system can be queried to obtain usage statistics for a given application, and results are provided aggregated across all channels in use in the application in the specified period. Stats may be used to track usage against account quotas." provider: ably method: GET path: "/stats" encoding: json input: { type: "object" properties: { unit: { type: "string" enum: ["minute", "hour", "day", "month"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }