2016-09-30 01:36:20 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/api"
|
|
|
|
"github.com/grafana/grafana/pkg/log"
|
|
|
|
"github.com/grafana/grafana/pkg/login"
|
|
|
|
"github.com/grafana/grafana/pkg/metrics"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
|
|
"github.com/grafana/grafana/pkg/services/alerting"
|
|
|
|
"github.com/grafana/grafana/pkg/services/cleanup"
|
|
|
|
"github.com/grafana/grafana/pkg/services/eventpublisher"
|
|
|
|
"github.com/grafana/grafana/pkg/services/notifications"
|
|
|
|
"github.com/grafana/grafana/pkg/services/search"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
|
|
"github.com/grafana/grafana/pkg/social"
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewGrafanaServer() models.GrafanaServer {
|
|
|
|
rootCtx, shutdownFn := context.WithCancel(context.Background())
|
|
|
|
childRoutines, childCtx := errgroup.WithContext(rootCtx)
|
|
|
|
|
|
|
|
return &GrafanaServerImpl{
|
|
|
|
context: childCtx,
|
|
|
|
shutdownFn: shutdownFn,
|
|
|
|
childRoutines: childRoutines,
|
|
|
|
log: log.New("server"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type GrafanaServerImpl struct {
|
|
|
|
context context.Context
|
|
|
|
shutdownFn context.CancelFunc
|
|
|
|
childRoutines *errgroup.Group
|
|
|
|
log log.Logger
|
2017-02-06 02:40:07 -06:00
|
|
|
|
|
|
|
httpServer *api.HttpServer
|
2016-09-30 01:36:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GrafanaServerImpl) Start() {
|
|
|
|
go listenToSystemSignals(g)
|
|
|
|
|
|
|
|
writePIDFile()
|
|
|
|
initRuntime()
|
|
|
|
initSql()
|
|
|
|
metrics.Init()
|
|
|
|
search.Init()
|
|
|
|
login.Init()
|
|
|
|
social.NewOAuthService()
|
|
|
|
eventpublisher.Init()
|
|
|
|
plugins.Init()
|
|
|
|
|
|
|
|
// init alerting
|
2017-01-25 06:32:26 -06:00
|
|
|
if setting.AlertingEnabled && setting.ExecuteAlerts {
|
2016-09-30 01:36:20 -05:00
|
|
|
engine := alerting.NewEngine()
|
|
|
|
g.childRoutines.Go(func() error { return engine.Run(g.context) })
|
|
|
|
}
|
|
|
|
|
|
|
|
// cleanup service
|
|
|
|
cleanUpService := cleanup.NewCleanUpService()
|
|
|
|
g.childRoutines.Go(func() error { return cleanUpService.Run(g.context) })
|
|
|
|
|
|
|
|
if err := notifications.Init(); err != nil {
|
|
|
|
g.log.Error("Notification service failed to initialize", "erro", err)
|
|
|
|
g.Shutdown(1, "Startup failed")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
g.startHttpServer()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GrafanaServerImpl) startHttpServer() {
|
2017-02-06 02:40:07 -06:00
|
|
|
g.httpServer = api.NewHttpServer()
|
2016-12-21 07:36:32 -06:00
|
|
|
|
2017-02-06 02:40:07 -06:00
|
|
|
err := g.httpServer.Start(g.context)
|
2016-09-30 01:36:20 -05:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
g.log.Error("Fail to start server", "error", err)
|
|
|
|
g.Shutdown(1, "Startup failed")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GrafanaServerImpl) Shutdown(code int, reason string) {
|
2016-09-30 06:25:54 -05:00
|
|
|
g.log.Info("Shutdown started", "code", code, "reason", reason)
|
2016-09-30 01:36:20 -05:00
|
|
|
|
2017-02-06 02:40:07 -06:00
|
|
|
err := g.httpServer.Shutdown(g.context)
|
|
|
|
if err != nil {
|
|
|
|
g.log.Error("Failed to shutdown server", "error", err)
|
|
|
|
}
|
|
|
|
|
2016-09-30 01:36:20 -05:00
|
|
|
g.shutdownFn()
|
2017-02-06 02:40:07 -06:00
|
|
|
err = g.childRoutines.Wait()
|
2016-09-30 01:36:20 -05:00
|
|
|
|
2016-09-30 06:25:54 -05:00
|
|
|
g.log.Info("Shutdown completed", "reason", err)
|
2016-09-30 01:36:20 -05:00
|
|
|
log.Close()
|
|
|
|
os.Exit(code)
|
|
|
|
}
|