
Ceph GetHealth
CertifiedGet the full Ceph cluster health report
Ceph GetHealth
Get the full Ceph cluster health report
Calls GET /api/health/full and returns the cluster status, a derived human-readable summary, and the raw per-check details.
type: io.kestra.plugin.ceph.cluster.GetHealthExamples
Fetch the full Ceph cluster health report
id: ceph_cluster_health
namespace: company.team
tasks:
- id: health
type: io.kestra.plugin.ceph.cluster.GetHealth
host: "ceph-mgr.internal"
username: "admin"
password: "{{ secret('CEPH_DASHBOARD_PASSWORD') }}"
Properties
host *Requiredstring
Ceph Dashboard host
Hostname or IP address of the Ceph Manager Dashboard. Must be reachable from the Kestra worker.
password string
Password
Password for the Ceph Dashboard account. Never logged. Required unless token is set; ignored otherwise.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
port integerstring
8443Ceph Dashboard port
TCP port of the Ceph Manager Dashboard REST API. Defaults to 8443.
skipSsl booleanstring
falseSkip TLS certificate verification
When true, disables TLS certificate verification. Useful when the Ceph Manager Dashboard uses a self-signed certificate, which is the default on most Ceph deployments. Defaults to false (secure): enable it explicitly and only for trusted networks.
token string
Pre-obtained JWT
A JWT obtained from POST /api/auth, used directly instead of username/password. Reused as-is for every request in the execution. It expires (Ceph default 8h TTL) and is NOT auto-renewed, so do not use it in triggers or scheduled flows; use username/password there instead. Mutually exclusive with password: when set, username/password are ignored.
username string
Username
Ceph Dashboard account used to obtain a session token from POST /api/auth. Required unless token is set.
Outputs
checks object
Checks
Raw per-check details as returned by the Ceph Dashboard API: a list of check objects.
status string
Cluster status
Overall Ceph cluster status: HEALTH_OK, HEALTH_WARN, or HEALTH_ERR.
summary array
Summary
Human-readable messages derived from each active health check.