{ "openapi": "3.0.3", "info": { "title": "tsa-daemon", "description": "", "license": { "name": "Apache-2.0" }, "version": "2024.05.07-138a1eab" }, "paths": { "/api/admin/set_diagnostic_log_filter/v1": { "post": { "tags": [ "logging" ], "summary": "Changes the diagnostic log filter dynamically.", "description": "See \nfor more information on diagnostic log filters.", "operationId": "set_diagnostic_log_filter_v1", "requestBody": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/SetDiagnosticFilterRequest" } } }, "required": true }, "responses": { "200": { "description": "Diagnostic level set successfully" } } } } }, "components": { "schemas": { "SetDiagnosticFilterRequest": { "type": "object", "required": [ "filter" ], "properties": { "filter": { "type": "string", "description": "The diagnostic filter spec to use", "example": "kumod=trace" } } } }, "securitySchemes": { "basic_auth": { "type": "http", "scheme": "basic" } } }, "security": [ { "basic_auth": [ "" ] } ] }