I am using Google App Engine Flexible environment (Node.js)
I have my own custom healthcheck implementation, however it is getting run every single second rather than the 8 seconds I have configured below.
Since my healthcheck does some things that are non trivial I would like to remove some load from my server by increasing the interval
health_check:
enable_health_check: True
check_interval_sec: 8
unhealthy_threshold: 10
healthy_threshold: 2
timeout_sec: 8
Any idea why my interval won't work?