You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ curl localhost:3000/api/_ping //error
$ curl localhost:3000/_ping
{"ok":true}
The built in _ping route will tell your load balancer everything is up.
Let's see that all services that are required are up:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
And now, let's see that it's alive:
$ curl localhost:3000/api/_ping //error
$ curl localhost:3000/_ping
{"ok":true}
The built in _ping route will tell your load balancer everything is up.
Let's see that all services that are required are up:
$ curl localhost:3000/api/_health //error
$ curl localhost:3000/_health
{"ok":true}
Beta Was this translation helpful? Give feedback.
All reactions