mirror of
https://github.com/logos-messaging/logos-messaging-rest-api.git
synced 2026-01-03 22:43:08 +00:00
27 lines
693 B
YAML
27 lines
693 B
YAML
get:
|
|
summary: Get node health status
|
|
description: Retrieve status of a Waku v2 node.
|
|
operationId: healthcheck
|
|
tags:
|
|
- health
|
|
responses:
|
|
'200':
|
|
description: Health report of a Waku v2 node and its protocols.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "./schemas/apitypes.yaml#/HealthReport"
|
|
'500':
|
|
description: Internal server error
|
|
content:
|
|
text/plain:
|
|
schema:
|
|
type: string
|
|
'503':
|
|
description: Node not initialized or having issues
|
|
content:
|
|
text/plain:
|
|
schema:
|
|
type: string
|
|
example: Node is not initialized
|