-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Troubleshoot readiness check #1545
base: main
Are you sure you want to change the base?
Conversation
i'm getting |
Co-authored-by: René Jeglinsky <rene.jeglinsky@sap.com>
::: details Troubleshoot using the Cloud Foundry CLI | ||
|
||
```sh | ||
cf apps # -> list all apps | ||
cf app <your app name> # -> get details on your app, incl. state and routes | ||
cf app <your app name> --guid # -> get your app's guid | ||
cf curl "/v3/processes/<your app guid>/stats" | ||
# -> list of processes (one per app instance) with property "routable" | ||
# indicating whether the most recent readiness check was successful | ||
``` | ||
|
||
See [cf curl](https://cli.cloudfoundry.org/en-US/v7/curl.html) and [The process stats object](https://v3-apidocs.cloudfoundry.org/version/3.184.0/index.html#the-process-stats-object) for details on how to use the CLI. | ||
|
||
::: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just for the second option, right? I'd indent it then accordingly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
99% 😂 cf app <your app name>
would also let you know that no route is bound... your choice
No description provided.