action cpy_get_instance_stats { label: "Get instance stats" description: "Get instance public statistics. This endpoint is cached." provider: cpy method: GET path: "/api/v1/server/stats" encoding: json output: { properties: { activityPubMessagesProcessedPerSecond: { type: "number" } totalActivityPubMessagesErrors: { type: "number" } totalActivityPubMessagesProcessed: { type: "number" } totalActivityPubMessagesSuccesses: { type: "number" } totalActivityPubMessagesWaiting: { type: "number" } totalDailyActiveUsers: { type: "number" } totalInstanceFollowers: { type: "number" } totalInstanceFollowing: { type: "number" } totalLocalDailyActiveVideoChannels: { type: "number" } totalLocalMonthlyActiveVideoChannels: { type: "number" } totalLocalPlaylists: { type: "number" } totalLocalVideoChannels: { type: "number" } totalLocalVideoComments: { type: "number" description: "Total comments made by local users" } totalLocalVideoFilesSize: { type: "number" } totalLocalVideoViews: { type: "number" description: "Total video views made on the instance" } totalLocalVideos: { type: "number" } totalLocalWeeklyActiveVideoChannels: { type: "number" } totalMonthlyActiveUsers: { type: "number" } totalUsers: { type: "number" } totalVideoComments: { type: "number" } totalVideos: { type: "number" } totalWeeklyActiveUsers: { type: "number" } videosRedundancy: { type: "array" items: { type: "object" properties: { strategy: { type: "string" } totalSize: { type: "number" } totalUsed: { type: "number" } totalVideoFiles: { type: "number" } totalVideos: { type: "number" } } } } } } }