# Gatus uptime / health check configuration for HIY. # Docs: https://github.com/TwiN/gatus web: port: 8080 # In-memory storage — no persistence needed for uptime checks. storage: type: memory # Alert via email when an endpoint is down (optional — remove if not needed). # alerting: # email: # from: gatus@yourdomain.com # username: gatus@yourdomain.com # password: ${EMAIL_PASSWORD} # host: smtp.yourdomain.com # port: 587 # to: you@yourdomain.com endpoints: - name: HIY Dashboard url: http://server:3000/api/status interval: 1m conditions: - "[STATUS] == 200" alerts: - type: email description: HIY dashboard is unreachable send-on-resolved: true # Add an entry per deployed app: # # - name: my-app # url: http://my-app:3001/health # interval: 1m # conditions: # - "[STATUS] == 200" # - "[RESPONSE_TIME] < 500"