1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-23 11:14:48 +02:00
imgproxy/main.go

61 lines
984 B
Go
Raw Normal View History

2017-06-20 16:58:55 +03:00
package main
import (
2019-08-09 16:12:04 +06:00
"log"
2017-10-17 18:23:48 +06:00
"os"
"os/signal"
"runtime"
"runtime/debug"
"syscall"
"time"
2017-06-20 16:58:55 +03:00
)
2019-12-27 12:22:07 +06:00
const version = "2.8.1"
2018-10-05 21:17:36 +06:00
type ctxKey string
2019-06-06 19:26:00 +06:00
func initialize() {
2019-08-09 16:12:04 +06:00
log.SetOutput(os.Stdout)
initLog()
2019-06-06 19:26:00 +06:00
configure()
initNewrelic()
initPrometheus()
initDownloading()
initErrorsReporting()
initVips()
2019-11-11 17:54:46 +06:00
if err := checkPresets(conf.Presets); err != nil {
shutdownVips()
logFatal(err.Error())
}
2019-06-06 19:26:00 +06:00
}
2017-06-20 16:58:55 +03:00
func main() {
2019-06-06 19:26:00 +06:00
initialize()
go func() {
var logMemStats = len(os.Getenv("IMGPROXY_LOG_MEM_STATS")) > 0
for range time.Tick(time.Duration(conf.FreeMemoryInterval) * time.Second) {
debug.FreeOSMemory()
if logMemStats {
var m runtime.MemStats
runtime.ReadMemStats(&m)
logDebug("MEMORY USAGE: Sys=%d HeapIdle=%d HeapInuse=%d", m.Sys/1024/1024, m.HeapIdle/1024/1024, m.HeapInuse/1024/1024)
}
}
}()
2018-09-10 12:17:00 +06:00
s := startServer()
2017-06-20 16:58:55 +03:00
2017-10-17 18:23:48 +06:00
stop := make(chan os.Signal, 1)
signal.Notify(stop, syscall.SIGINT, syscall.SIGTERM)
2017-06-20 16:58:55 +03:00
2017-10-17 18:23:48 +06:00
<-stop
shutdownServer(s)
2018-09-10 12:17:00 +06:00
shutdownVips()
2017-06-20 16:58:55 +03:00
}