fix: improve host system log filtering compatibility (#13373)

This commit is contained in:
ssongliu
2026-07-27 11:25:26 +08:00
committed by GitHub
parent 739686ff89
commit 26bd2d08be
21 changed files with 242 additions and 4 deletions

View File

@@ -20388,6 +20388,33 @@ const docTemplate = `{
]
}
},
"/logs/system/status": {
"get": {
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.SystemLogStatus"
}
}
},
"security": [
{
"ApiKeyAuth": []
},
{
"Timestamp": []
}
],
"summary": "Get host system log status",
"tags": [
"Logs"
]
}
},
"/logs/tasks/executing/count": {
"get": {
"responses": {
@@ -38946,6 +38973,23 @@ const docTemplate = `{
},
"type": "object"
},
"dto.SystemLogStatus": {
"properties": {
"keywordFilterSupported": {
"type": "boolean"
},
"message": {
"type": "string"
},
"source": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"dto.Tag": {
"properties": {
"key": {

View File

@@ -20384,6 +20384,33 @@
]
}
},
"/logs/system/status": {
"get": {
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.SystemLogStatus"
}
}
},
"security": [
{
"ApiKeyAuth": []
},
{
"Timestamp": []
}
],
"summary": "Get host system log status",
"tags": [
"Logs"
]
}
},
"/logs/tasks/executing/count": {
"get": {
"responses": {
@@ -38942,6 +38969,23 @@
},
"type": "object"
},
"dto.SystemLogStatus": {
"properties": {
"keywordFilterSupported": {
"type": "boolean"
},
"message": {
"type": "string"
},
"source": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"dto.Tag": {
"properties": {
"key": {