My fly app failed the health check then it worked again then it failed again. See the log.
My fly.toml
app = ""
primary_region = "fra"
kill_signal = "SIGINT"
kill_timeout = "5s"
[experimental]
auto_rollback = true
[env]
FLY = "true"
PORT = "8080"
[[services]]
protocol = "tcp"
internal_port = 8080
processes = ["app"]
[[services.ports]]
port = 80
handlers = ["http"]
force_https = true
[[services.ports]]
port = 443
handlers = ["tls", "http"]
[services.concurrency]
type = "connections"
hard_limit = 200
soft_limit = 150
[[services.tcp_checks]]
interval = "15s"
timeout = "2s"
grace_period = "1s"
restart_limit = 0
[[services.http_checks]]
interval = "10s"
timeout = "5s"
grace_period = "1m0s"
restart_limit = 0
method = "get"
path = "/healthcheck"
protocol = "http"
How could I debug it?