Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
I was wondering if there is any issues reported regarding GIN shutting down with no reason. Runs for 3 days to a week with no service hits. then app shutdowns. I got a start up script that runs if the app is down and restarts it
go version: go version go1.10.1
gin version (or commit ref): Gin 1.2
operating system: Linux
Below shows the log being restarted. Since i only have logging set to WARN and above (production site), i don't have debug logs. If the server is shutting down i should be receiving a PANIC or ERROR log.
admin@linuxmachine:/dir $ cat service.log
time="2018-09-10T18:41:42-05:00" level=info Log Compress=true Log Level=warn Log Location=/u/log/ Log Max Backups=15 Log Max size=5 Log enabled=true logFileName=service.log
time="2018-09-16T03:08:42-05:00" level=info Log Compress=true Log Level=warn Log Location=/u/log/ Log Max Backups=15 Log Max size=5 Log enabled=true logFileName=service.log
time="2018-09-16T03:15:42-05:00" level=info Log Compress=true Log Level=warn Log Location=/u/log/ Log Max Backups=15 Log Max size=5 Log enabled=true logFileName=service.log
admin@linuxmachine:/dir $
I was wondering if there is any issues reported regarding GIN shutting down with no reason. Runs for 3 days to a week with no service hits. then app shutdowns. I got a start up script that runs if the app is down and restarts it
Below shows the log being restarted. Since i only have logging set to WARN and above (production site), i don't have debug logs. If the server is shutting down i should be receiving a PANIC or ERROR log.