I\'ve deployed a nodejs app running on the Google App Engine Flex runtime using the following app.yaml
configuration:
runtime: nodejs
env: flex
Use the advanced filter and say "NOT _ah/health".
Removing nginx.request log will help as well.
I don't have a solution to the root problem. But if the spamming is making it impossible to use the log for its intended purpose, like it is for me, here is a work around:
Enable the 'Advanced Log Filters' (the tiny down arrow next to the search field in Stackdriver Logging)
Add this to the Search query
NOT textPayload : (health)
I also run NodeJS in GAE Flex env. Health checks were also spamming the server log. The following few things helped me in reducing them:
Unfortunately it does seem like we have a bug on our docs. Today, indeed, apps do get health checked on a pretty frequent basis.
The reason is many fold, but in general each VM will be hit by 3 * 2 different health checks at the recurrence interval you specify (by default, the, very aggressive, 1 sec). The reason for this is 2 types of health check (autohealer and LB ones) and 3 of each for availability reasons.
That being said, we are currently working on a new shape of health checks that will be released pretty soon and should fix this and other problems with the existing health checking behavior (at least make the defaults more manageable and giving more tuning options to users).
Stay tuned!