| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- package main
- import (
- "context"
- "flag"
- "fmt"
- "io/ioutil"
- "net"
- "os"
- "path/filepath"
- "strconv"
- "time"
- "github.com/facebookgo/inject"
- "github.com/grafana/grafana/pkg/api"
- "github.com/grafana/grafana/pkg/api/routing"
- "github.com/grafana/grafana/pkg/bus"
- "github.com/grafana/grafana/pkg/login"
- "github.com/grafana/grafana/pkg/middleware"
- "github.com/grafana/grafana/pkg/registry"
- "github.com/grafana/grafana/pkg/social"
- "golang.org/x/sync/errgroup"
- "github.com/grafana/grafana/pkg/log"
- "github.com/grafana/grafana/pkg/services/cache"
- "github.com/grafana/grafana/pkg/setting"
- // self registering services
- _ "github.com/grafana/grafana/pkg/extensions"
- _ "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/provisioning"
- _ "github.com/grafana/grafana/pkg/services/rendering"
- _ "github.com/grafana/grafana/pkg/services/search"
- _ "github.com/grafana/grafana/pkg/services/sqlstore"
- _ "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"),
- cfg: setting.NewCfg(),
- }
- }
- type GrafanaServerImpl struct {
- context context.Context
- shutdownFn context.CancelFunc
- childRoutines *errgroup.Group
- log log.Logger
- cfg *setting.Cfg
- shutdownReason string
- shutdownInProgress bool
- RouteRegister routing.RouteRegister `inject:""`
- HttpServer *api.HTTPServer `inject:""`
- }
- func (g *GrafanaServerImpl) Run() error {
- g.loadConfiguration()
- g.writePIDFile()
- login.Init()
- social.NewOAuthService()
- serviceGraph := inject.Graph{}
- serviceGraph.Provide(&inject.Object{Value: bus.GetBus()})
- serviceGraph.Provide(&inject.Object{Value: g.cfg})
- serviceGraph.Provide(&inject.Object{Value: routing.NewRouteRegister(middleware.RequestMetrics, middleware.RequestTracing)})
- serviceGraph.Provide(&inject.Object{Value: cache.New(5*time.Minute, 10*time.Minute)})
- // self registered services
- services := registry.GetServices()
- // Add all services to dependency graph
- for _, service := range services {
- serviceGraph.Provide(&inject.Object{Value: service.Instance})
- }
- serviceGraph.Provide(&inject.Object{Value: g})
- // Inject dependencies to services
- if err := serviceGraph.Populate(); err != nil {
- return fmt.Errorf("Failed to populate service dependency: %v", err)
- }
- // Init & start services
- for _, service := range services {
- if registry.IsDisabled(service.Instance) {
- continue
- }
- g.log.Info("Initializing " + service.Name)
- if err := service.Instance.Init(); err != nil {
- return fmt.Errorf("Service init failed: %v", err)
- }
- }
- // Start background services
- for _, srv := range services {
- // variable needed for accessing loop variable in function callback
- descriptor := srv
- service, ok := srv.Instance.(registry.BackgroundService)
- if !ok {
- continue
- }
- if registry.IsDisabled(descriptor.Instance) {
- continue
- }
- g.childRoutines.Go(func() error {
- // Skip starting new service when shutting down
- // Can happen when service stop/return during startup
- if g.shutdownInProgress {
- return nil
- }
- err := service.Run(g.context)
- // If error is not canceled then the service crashed
- if err != context.Canceled && err != nil {
- g.log.Error("Stopped "+descriptor.Name, "reason", err)
- } else {
- g.log.Info("Stopped "+descriptor.Name, "reason", err)
- }
- // Mark that we are in shutdown mode
- // So more services are not started
- g.shutdownInProgress = true
- return err
- })
- }
- sendSystemdNotification("READY=1")
- return g.childRoutines.Wait()
- }
- func (g *GrafanaServerImpl) loadConfiguration() {
- err := g.cfg.Load(&setting.CommandLineArgs{
- Config: *configFile,
- HomePath: *homePath,
- Args: flag.Args(),
- })
- if err != nil {
- fmt.Fprintf(os.Stderr, "Failed to start grafana. error: %s\n", err.Error())
- os.Exit(1)
- }
- g.log.Info("Starting "+setting.ApplicationName, "version", version, "commit", commit, "branch", buildBranch, "compiled", time.Unix(setting.BuildStamp, 0))
- g.cfg.LogConfigSources()
- }
- func (g *GrafanaServerImpl) Shutdown(reason string) {
- g.log.Info("Shutdown started", "reason", reason)
- g.shutdownReason = reason
- g.shutdownInProgress = true
- // call cancel func on root context
- g.shutdownFn()
- // wait for child routines
- g.childRoutines.Wait()
- }
- func (g *GrafanaServerImpl) Exit(reason error) int {
- // default exit code is 1
- code := 1
- if reason == context.Canceled && g.shutdownReason != "" {
- reason = fmt.Errorf(g.shutdownReason)
- code = 0
- }
- g.log.Error("Server shutdown", "reason", reason)
- return code
- }
- 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
- }
|