nginx-proxy-manager-zh/backend/schema/paths/reports/hosts/get.json

51 lines
918 B
JSON
Raw Normal View History

{
"operationId": "reportsHosts",
"summary": "Report on Host Statistics",
"tags": ["Reports"],
"security": [
{
"BearerAuth": ["reports"]
}
],
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"examples": {
"default": {
"value": {
"proxy": 20,
"redirection": 1,
"stream": 0,
"dead": 1
}
}
},
"schema": {
"type": "object",
"properties": {
"proxy": {
"type": "integer",
"description": "Proxy Hosts Count"
},
"redirection": {
"type": "integer",
"description": "Redirection Hosts Count"
},
"stream": {
"type": "integer",
"description": "Streams Count"
},
"dead": {
"type": "integer",
"description": "404 Hosts Count"
}
}
}
}
}
}
}
}