GoodMem
ReferenceCLI

System Health

System Health CLI command reference

goodmem system health

Check GoodMem gRPC health probes

Synopsis

Run the standard gRPC health checks exposed by the GoodMem server. The command talks directly to grpc.health.v1.Health using the configured server address.

goodmem system health [flags]

Examples

  # Ready probe (default)
  goodmem system health

  # Explicit live probe
  goodmem system health --probe live

  # Probe a specific service and emit JSON
  goodmem system health --probe ready --service goodmem.v1.PingService --output json

Options

  -h, --help             help for health
      --output string    Output format: text or json (default "text")
      --probe string     Probe to execute: ready, live, or startup (default "ready")
      --service string   Fully-qualified gRPC service name (defaults to aggregate health)

Options inherited from parent commands

      --api-key string   API key for authentication (can also be set via GOODMEM_API_KEY environment variable)
      --server string    GoodMem server address (gRPC API) (default "https://localhost:9090")

SEE ALSO