You are troubleshooting why a service registered via HTTP API is not showing up in the catalog. Which tool provides the most immediate insight into the registration status?
Trap 1: consul kv get
KV store is separate from the service catalog.
Trap 2: consul reload
This command triggers a configuration reload.
Trap 3: consul members
This shows cluster membership, not service state.
- A
consul kv get
Why wrong: KV store is separate from the service catalog.
- B
consul catalog services
This command lists all services currently registered in the catalog.
- C
consul reload
Why wrong: This command triggers a configuration reload.
- D
consul members
Why wrong: This shows cluster membership, not service state.