{ "opencollection": "1.0.0", "info": { "name": "Cribl As Code API Credentials Collectors API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Collectors", "type": "folder" }, "items": [ { "info": { "name": "List all collectors", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.cribl.cloud/system/collectors" }, "docs": "Retrieves a list of all configured data collectors including REST API collectors, database collectors, and script collectors." }, { "info": { "name": "Create a new collector", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.cribl.cloud/system/collectors", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new data collector with the specified type, schedule, and configuration for automated data collection." }, { "info": { "name": "Get a collector by ID", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.cribl.cloud/system/collectors/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" } ] }, "docs": "Retrieves the configuration and status of a specific data collector identified by its unique ID." }, { "info": { "name": "Update a collector", "type": "http" }, "http": { "method": "PATCH", "url": "https://gateway.cribl.cloud/system/collectors/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the configuration of an existing data collector." }, { "info": { "name": "Delete a collector", "type": "http" }, "http": { "method": "DELETE", "url": "https://gateway.cribl.cloud/system/collectors/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" } ] }, "docs": "Deletes a data collector by its unique ID." } ] } ], "bundled": true }