action rudder_queue_information { label: "Get information about inventory processing queue" description: "Provide information about the current state of the inventory processor" provider: rudder method: GET path: "/inventories/info" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["queueInformation"] } data: { type: "object" description: "Information about the service" required: ["queueMaxSize", "queueSaturated"] properties: { queueMaxSize: { type: "integer" } queueSaturated: { type: "boolean" description: "Is the inventory queue full" } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }