mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-10 01:22:14 +01:00
953 B
953 B
title
| title |
|---|
| Ping |
Gotenberg provides the endpoint /ping for checking the API availability with
a simple GET request.
This feature is especially useful for liveness/readiness probes in Kubernetes:
If LOG_LEVEL is "DEBUG", it also returns details about the PM2 processes in JSON format.
For instance:
[
{
"name": "google-chrome-stable",
"pm2_env": {
"status": "online"
},
"monit": {
"memory": 73826304,
"cpu": 0
}
},
{
"name": "unoconv",
"pm2_env": {
"status": "online"
},
"monit": {
"memory": 70914048,
"cpu": 0
}
}
]