services
Manage and inspect Cloud Run services in your configured project and region.
advncd services
List all Cloud Run services in the configured project and region.
advncd services
Output:
Services (project=my-project, region=europe-west1)
NAME STATUS URL
my-app ready https://my-app-abc123-ew.a.run.app
backend-api ready https://backend-api-abc123-ew.a.run.app
Requires advncd init to have been run first.
advncd services describe
Show details for a specific service: URL, image, and condition states.
advncd services describe my-app
advncd services open
Open the service public URL and its Cloud Console page in the browser.
advncd services open my-app
Opens two tabs:
- The service's public Cloud Run URL
- The Cloud Console service detail page
advncd services logs
Open Cloud Logging with a pre-built query for the service.
advncd services logs my-app
Opens Cloud Logging in the browser, filtered to the service's log stream.
advncd services metrics
Open Cloud Monitoring metrics view for the service.
advncd services metrics my-app
advncd services explain
Use a local LLM (Ollama) to explain service conditions and suggest likely causes.
advncd services explain my-app
Reads the service's condition states and sends them to the configured LLM provider for a plain-English explanation.
LLM configuration (environment variables):
| Variable | Default | Description |
|---|---|---|
ADVNCD_LLM_PROVIDER | ollama | LLM provider |
ADVNCD_LLM_MODEL | llama3.2 | Model name |
ADVNCD_LLM_BASE_URL | http://localhost:11434 | Ollama base URL |
ADVNCD_LLM_TIMEOUT | — | Request timeout (Go duration, e.g. 30s) |
Check LLM connectivity:
advncd llm status
Local dashboard
For a full service overview with the local registry:
advncd dashboard
Starts a local HTTP server and opens it in the browser. Shows all services recorded in the local registry (registry.json).