An automation engineer needs to check if the Junos REST API is actively running and responsive on a managed device without querying heavy configuration data. Which lightweight endpoint can be queried?
Trap 1: /healthz
/healthz is common in Kubernetes environments, not native Junos REST API.
Trap 2: /api/v1/system/ping
This path structure is not used by the Junos REST API daemon.
Trap 3: /status/ping
/status/ping is not a standard Junos REST endpoint.
- A
/healthz
Why wrong: /healthz is common in Kubernetes environments, not native Junos REST API.
- B
/api/initial
The /api/initial endpoint returns root resource information and is used for API discovery and liveness checks.
- C
/api/v1/system/ping
Why wrong: This path structure is not used by the Junos REST API daemon.
- D
/status/ping
Why wrong: /status/ping is not a standard Junos REST endpoint.