| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- package main
- import (
- "context"
- "flag"
- "fmt"
- "io/ioutil"
- "net"
- "os"
- "path/filepath"
- "strconv"
- "time"
- "github.com/grafana/grafana/pkg/services/provisioning"
- "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/plugins"
- "github.com/grafana/grafana/pkg/services/alerting"
- "github.com/grafana/grafana/pkg/services/cleanup"
- "github.com/grafana/grafana/pkg/services/notifications"
- "github.com/grafana/grafana/pkg/services/search"
- "github.com/grafana/grafana/pkg/services/sqlstore"
- "github.com/grafana/grafana/pkg/setting"
- "github.com/grafana/grafana/pkg/social"
- "github.com/grafana/grafana/pkg/tracing"
- )
- func NewGrafanaServer() *GrafanaServerImpl {
- 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
- httpServer *api.HttpServer
- }
- func (g *GrafanaServerImpl) Start() error {
- g.initLogging()
- g.writePIDFile()
- initSql()
- metrics.Init(setting.Cfg)
- search.Init()
- login.Init()
- social.NewOAuthService()
- plugins.Init()
- if err := provisioning.Init(g.context, setting.HomePath, setting.Cfg); err != nil {
- return fmt.Errorf("Failed to provision Grafana from config. error: %v", err)
- }
- closer, err := tracing.Init(setting.Cfg)
- if err != nil {
- return fmt.Errorf("Tracing settings is not valid. error: %v", err)
- }
- defer closer.Close()
- // init alerting
- if setting.AlertingEnabled && setting.ExecuteAlerts {
- 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 {
- return fmt.Errorf("Notification service failed to initialize. error: %v", err)
- }
- sendSystemdNotification("READY=1")
- return g.startHttpServer()
- }
- func initSql() {
- sqlstore.NewEngine()
- sqlstore.EnsureAdminUser()
- }
- func (g *GrafanaServerImpl) initLogging() {
- err := setting.NewConfigContext(&setting.CommandLineArgs{
- Config: *configFile,
- HomePath: *homePath,
- Args: flag.Args(),
- })
- if err != nil {
- g.log.Error(err.Error())
- os.Exit(1)
- }
- g.log.Info("Starting Grafana", "version", version, "commit", commit, "compiled", time.Unix(setting.BuildStamp, 0))
- setting.LogConfigurationInfo()
- }
- func (g *GrafanaServerImpl) startHttpServer() error {
- g.httpServer = api.NewHttpServer()
- err := g.httpServer.Start(g.context)
- if err != nil {
- return fmt.Errorf("Fail to start server. error: %v", err)
- }
- return nil
- }
- func (g *GrafanaServerImpl) Shutdown(code int, reason string) {
- g.log.Info("Shutdown started", "code", code, "reason", reason)
- err := g.httpServer.Shutdown(g.context)
- if err != nil {
- g.log.Error("Failed to shutdown server", "error", err)
- }
- g.shutdownFn()
- err = g.childRoutines.Wait()
- if err != nil && err != context.Canceled {
- g.log.Error("Server shutdown completed with an error", "error", err)
- }
- }
- func (g *GrafanaServerImpl) writePIDFile() {
- if *pidFile == "" {
- return
- }
- // Ensure the required directory structure exists.
- err := os.MkdirAll(filepath.Dir(*pidFile), 0700)
- if err != nil {
- g.log.Error("Failed to verify pid directory", "error", err)
- os.Exit(1)
- }
- // Retrieve the PID and write it.
- pid := strconv.Itoa(os.Getpid())
- if err := ioutil.WriteFile(*pidFile, []byte(pid), 0644); err != nil {
- g.log.Error("Failed to write pidfile", "error", err)
- os.Exit(1)
- }
- g.log.Info("Writing PID file", "path", *pidFile, "pid", pid)
- }
- func sendSystemdNotification(state string) error {
- notifySocket := os.Getenv("NOTIFY_SOCKET")
- if notifySocket == "" {
- return fmt.Errorf("NOTIFY_SOCKET environment variable empty or unset.")
- }
- socketAddr := &net.UnixAddr{
- Name: notifySocket,
- Net: "unixgram",
- }
- conn, err := net.DialUnix(socketAddr.Net, nil, socketAddr)
- if err != nil {
- return err
- }
- _, err = conn.Write([]byte(state))
- conn.Close()
- return err
- }
|