Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
86b546c2
Commit
86b546c2
authored
Sep 30, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(main): refactoring main grafana server / startup code
parent
2b8177e3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
138 additions
and
63 deletions
+138
-63
pkg/cmd/grafana-server/main.go
+6
-60
pkg/cmd/grafana-server/server.go
+129
-0
pkg/models/server.go
+3
-3
No files found.
pkg/cmd/grafana-server/main.go
View file @
86b546c2
package
main
package
main
import
(
import
(
"context"
"flag"
"flag"
"fmt"
"fmt"
"io/ioutil"
"io/ioutil"
...
@@ -13,21 +12,11 @@ import (
...
@@ -13,21 +12,11 @@ import (
"syscall"
"syscall"
"time"
"time"
"golang.org/x/sync/errgroup"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/login"
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/metrics"
"github.com/grafana/grafana/pkg/plugins"
"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/services/sqlstore"
"github.com/grafana/grafana/pkg/services/sqlstore"
"github.com/grafana/grafana/pkg/setting"
"github.com/grafana/grafana/pkg/setting"
"github.com/grafana/grafana/pkg/social"
"github.com/grafana/grafana/pkg/services/alerting"
_
"github.com/grafana/grafana/pkg/services/alerting/conditions"
_
"github.com/grafana/grafana/pkg/services/alerting/conditions"
_
"github.com/grafana/grafana/pkg/services/alerting/notifiers"
_
"github.com/grafana/grafana/pkg/services/alerting/notifiers"
_
"github.com/grafana/grafana/pkg/tsdb/graphite"
_
"github.com/grafana/grafana/pkg/tsdb/graphite"
...
@@ -66,41 +55,8 @@ func main() {
...
@@ -66,41 +55,8 @@ func main() {
setting
.
BuildCommit
=
commit
setting
.
BuildCommit
=
commit
setting
.
BuildStamp
=
buildstampInt64
setting
.
BuildStamp
=
buildstampInt64
appContext
,
shutdownFn
:=
context
.
WithCancel
(
context
.
Background
())
server
:=
NewGrafanaServer
()
grafanaGroup
,
appContext
:=
errgroup
.
WithContext
(
appContext
)
server
.
Start
()
go
listenToSystemSignals
(
shutdownFn
,
grafanaGroup
)
flag
.
Parse
()
writePIDFile
()
initRuntime
()
initSql
()
metrics
.
Init
()
search
.
Init
()
login
.
Init
()
social
.
NewOAuthService
()
eventpublisher
.
Init
()
plugins
.
Init
()
// init alerting
if
setting
.
AlertingEnabled
{
engine
:=
alerting
.
NewEngine
()
grafanaGroup
.
Go
(
func
()
error
{
return
engine
.
Run
(
appContext
)
})
}
// cleanup service
cleanUpService
:=
cleanup
.
NewCleanUpService
()
grafanaGroup
.
Go
(
func
()
error
{
return
cleanUpService
.
Run
(
appContext
)
})
if
err
:=
notifications
.
Init
();
err
!=
nil
{
log
.
Fatal
(
3
,
"Notification service failed to initialize"
,
err
)
}
exitCode
:=
StartServer
()
grafanaGroup
.
Wait
()
exitChan
<-
exitCode
}
}
func
initRuntime
()
{
func
initRuntime
()
{
...
@@ -143,7 +99,7 @@ func writePIDFile() {
...
@@ -143,7 +99,7 @@ func writePIDFile() {
}
}
}
}
func
listenToSystemSignals
(
cancel
context
.
CancelFunc
,
grafanaGroup
*
errgroup
.
Group
)
{
func
listenToSystemSignals
(
server
models
.
GrafanaServer
)
{
signalChan
:=
make
(
chan
os
.
Signal
,
1
)
signalChan
:=
make
(
chan
os
.
Signal
,
1
)
code
:=
0
code
:=
0
...
@@ -151,18 +107,8 @@ func listenToSystemSignals(cancel context.CancelFunc, grafanaGroup *errgroup.Gro
...
@@ -151,18 +107,8 @@ func listenToSystemSignals(cancel context.CancelFunc, grafanaGroup *errgroup.Gro
select
{
select
{
case
sig
:=
<-
signalChan
:
case
sig
:=
<-
signalChan
:
log
.
Info2
(
"Received system signal. Shutting down"
,
"signal"
,
sig
)
server
.
Shutdown
(
0
,
fmt
.
Sprintf
(
"system signal=%s"
,
sig
)
)
case
code
=
<-
exitChan
:
case
code
=
<-
exitChan
:
switch
code
{
server
.
Shutdown
(
code
,
"startup error"
)
case
0
:
log
.
Info
(
"Shutting down"
)
default
:
log
.
Warn
(
"Shutting down"
)
}
}
}
cancel
()
grafanaGroup
.
Wait
()
log
.
Close
()
os
.
Exit
(
code
)
}
}
pkg/cmd/grafana-server/server.go
0 → 100644
View file @
86b546c2
package
main
import
(
"context"
"fmt"
"net/http"
"os"
"time"
"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
}
func
(
g
*
GrafanaServerImpl
)
Start
()
{
go
listenToSystemSignals
(
g
)
writePIDFile
()
initRuntime
()
initSql
()
metrics
.
Init
()
search
.
Init
()
login
.
Init
()
social
.
NewOAuthService
()
eventpublisher
.
Init
()
plugins
.
Init
()
// init alerting
if
setting
.
AlertingEnabled
{
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
()
{
logger
=
log
.
New
(
"http.server"
)
var
err
error
m
:=
newMacaron
()
api
.
Register
(
m
)
listenAddr
:=
fmt
.
Sprintf
(
"%s:%s"
,
setting
.
HttpAddr
,
setting
.
HttpPort
)
g
.
log
.
Info
(
"Initializing HTTP Server"
,
"address"
,
listenAddr
,
"protocol"
,
setting
.
Protocol
,
"subUrl"
,
setting
.
AppSubUrl
)
switch
setting
.
Protocol
{
case
setting
.
HTTP
:
err
=
http
.
ListenAndServe
(
listenAddr
,
m
)
case
setting
.
HTTPS
:
err
=
http
.
ListenAndServeTLS
(
listenAddr
,
setting
.
CertFile
,
setting
.
KeyFile
,
m
)
default
:
g
.
log
.
Error
(
"Invalid protocol"
,
"protocol"
,
setting
.
Protocol
)
g
.
Shutdown
(
1
,
"Startup failed"
)
}
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
)
{
log
.
Info
(
"Shutting down"
,
"code"
,
code
,
"reason"
,
reason
)
g
.
shutdownFn
()
err
:=
g
.
childRoutines
.
Wait
()
log
.
Info
(
"Shutting down completed"
,
"error"
,
err
)
log
.
Close
()
os
.
Exit
(
code
)
}
// implement context.Context
func
(
g
*
GrafanaServerImpl
)
Deadline
()
(
deadline
time
.
Time
,
ok
bool
)
{
return
g
.
context
.
Deadline
()
}
func
(
g
*
GrafanaServerImpl
)
Done
()
<-
chan
struct
{}
{
return
g
.
context
.
Done
()
}
func
(
g
*
GrafanaServerImpl
)
Err
()
error
{
return
g
.
context
.
Err
()
}
func
(
g
*
GrafanaServerImpl
)
Value
(
key
interface
{})
interface
{}
{
return
g
.
context
.
Value
(
key
)
}
pkg/
core/core
.go
→
pkg/
models/server
.go
View file @
86b546c2
package
core
package
models
import
"context"
import
"context"
type
GrafanaServer
interface
{
type
GrafanaServer
interface
{
context
.
Context
context
.
Context
}
type
GrafanaServerImpl
struct
{
Start
()
Shutdown
(
code
int
,
reason
string
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment