Jake
Jake

Reputation: 1580

In Google cloud app engine, how to enable health check for a particular service

I'm following the direction describe in a google doc about App Engine health check.

According to the doc, it seems that I can enable or disable the health check for a project, but not for a particular service under a project. A project can have multiple services, and I'm wondering if it's possible to control the health check per service, and if yes, how to.

Upvotes: 0

Views: 696

Answers (1)

Caner
Caner

Reputation: 59198

Your statement

"I can enable or disable the health check for a project, but not for a particular service under a project."

is incorrect.

Each service has it own app.yaml file and you can configure health checks for a particular service via it.

How to do this is explained in the link you have provided.

Upvotes: 1

Related Questions