mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 03:41:01 +00:00
More prometheus metrics, refactoring
This commit is contained in:
parent
ba70314aa6
commit
1d564e978f
3 changed files with 56 additions and 105 deletions
|
@ -563,23 +563,17 @@ func server(c *cli.Context) error {
|
||||||
auther := &authorizer{
|
auther := &authorizer{
|
||||||
password: c.String("agent-secret"),
|
password: c.String("agent-secret"),
|
||||||
}
|
}
|
||||||
s := grpc.NewServer(
|
grpcServer := grpc.NewServer(
|
||||||
grpc.StreamInterceptor(auther.streamInterceptor),
|
grpc.StreamInterceptor(auther.streamInterceptor),
|
||||||
grpc.UnaryInterceptor(auther.unaryIntercaptor),
|
grpc.UnaryInterceptor(auther.unaryIntercaptor),
|
||||||
grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
|
grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
|
||||||
MinTime: c.Duration("keepalive-min-time"),
|
MinTime: c.Duration("keepalive-min-time"),
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
ss := new(droneserver.DroneServer)
|
droneServer := droneserver.NewDroneServer(remote_, droneserver.Config.Services.Queue, droneserver.Config.Services.Logs, droneserver.Config.Services.Pubsub, store_, droneserver.Config.Server.Host)
|
||||||
ss.Queue = droneserver.Config.Services.Queue
|
proto.RegisterDroneServer(grpcServer, droneServer)
|
||||||
ss.Logger = droneserver.Config.Services.Logs
|
|
||||||
ss.Pubsub = droneserver.Config.Services.Pubsub
|
|
||||||
ss.Remote = remote_
|
|
||||||
ss.Store = store_
|
|
||||||
ss.Host = droneserver.Config.Server.Host
|
|
||||||
proto.RegisterDroneServer(s, ss)
|
|
||||||
|
|
||||||
err = s.Serve(lis)
|
err = grpcServer.Serve(lis)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Error(err)
|
logrus.Error(err)
|
||||||
return err
|
return err
|
||||||
|
@ -651,11 +645,6 @@ func server(c *cli.Context) error {
|
||||||
return g.Wait()
|
return g.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
// HACK please excuse the message during this period of heavy refactoring.
|
|
||||||
// We are currently transitioning from storing services (ie database, queue)
|
|
||||||
// in the gin.Context to storing them in a struct. We are also moving away
|
|
||||||
// from gin to gorilla. We will temporarily use global during our refactoring
|
|
||||||
// which will be removing in the final implementation.
|
|
||||||
func setupEvilGlobals(c *cli.Context, v store.Store, r remote.Remote) {
|
func setupEvilGlobals(c *cli.Context, v store.Store, r remote.Remote) {
|
||||||
|
|
||||||
// storage
|
// storage
|
||||||
|
|
|
@ -219,7 +219,7 @@ func setupMetrics(g *errgroup.Group, store_ store.Store) {
|
||||||
})
|
})
|
||||||
builds := promauto.NewGauge(prometheus.GaugeOpts{
|
builds := promauto.NewGauge(prometheus.GaugeOpts{
|
||||||
Namespace: "drone",
|
Namespace: "drone",
|
||||||
Name: "build_count",
|
Name: "build_total_count",
|
||||||
Help: "Total number of builds.",
|
Help: "Total number of builds.",
|
||||||
})
|
})
|
||||||
users := promauto.NewGauge(prometheus.GaugeOpts{
|
users := promauto.NewGauge(prometheus.GaugeOpts{
|
||||||
|
|
140
server/rpc.go
140
server/rpc.go
|
@ -33,6 +33,8 @@ import (
|
||||||
"github.com/laszlocph/drone-oss-08/cncd/pipeline/pipeline/rpc/proto"
|
"github.com/laszlocph/drone-oss-08/cncd/pipeline/pipeline/rpc/proto"
|
||||||
"github.com/laszlocph/drone-oss-08/cncd/pubsub"
|
"github.com/laszlocph/drone-oss-08/cncd/pubsub"
|
||||||
"github.com/laszlocph/drone-oss-08/cncd/queue"
|
"github.com/laszlocph/drone-oss-08/cncd/queue"
|
||||||
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
||||||
|
|
||||||
"github.com/laszlocph/drone-oss-08/model"
|
"github.com/laszlocph/drone-oss-08/model"
|
||||||
"github.com/laszlocph/drone-oss-08/remote"
|
"github.com/laszlocph/drone-oss-08/remote"
|
||||||
|
@ -41,11 +43,6 @@ import (
|
||||||
"github.com/drone/expr"
|
"github.com/drone/expr"
|
||||||
)
|
)
|
||||||
|
|
||||||
// This file is a complete disaster because I'm trying to wedge in some
|
|
||||||
// experimental code. Please pardon our appearance during renovations.
|
|
||||||
|
|
||||||
// Config is an evil global configuration that will be used as we transition /
|
|
||||||
// refactor the codebase to move away from storing these values in the Context.
|
|
||||||
var Config = struct {
|
var Config = struct {
|
||||||
Services struct {
|
Services struct {
|
||||||
Pubsub pubsub.Publisher
|
Pubsub pubsub.Publisher
|
||||||
|
@ -91,12 +88,14 @@ var Config = struct {
|
||||||
}{}
|
}{}
|
||||||
|
|
||||||
type RPC struct {
|
type RPC struct {
|
||||||
remote remote.Remote
|
remote remote.Remote
|
||||||
queue queue.Queue
|
queue queue.Queue
|
||||||
pubsub pubsub.Publisher
|
pubsub pubsub.Publisher
|
||||||
logger logging.Log
|
logger logging.Log
|
||||||
store store.Store
|
store store.Store
|
||||||
host string
|
host string
|
||||||
|
buildTime *prometheus.GaugeVec
|
||||||
|
buildCount *prometheus.CounterVec
|
||||||
}
|
}
|
||||||
|
|
||||||
// Next implements the rpc.Next function
|
// Next implements the rpc.Next function
|
||||||
|
@ -416,6 +415,14 @@ func (s *RPC) Done(c context.Context, id string, state rpc.State) error {
|
||||||
|
|
||||||
s.notify(c, repo, build, procs)
|
s.notify(c, repo, build, procs)
|
||||||
|
|
||||||
|
if build.Status == model.StatusSuccess || build.Status == model.StatusFailure {
|
||||||
|
s.buildCount.WithLabelValues(repo.FullName, build.Branch, build.Status, "total").Inc()
|
||||||
|
s.buildTime.WithLabelValues(repo.FullName, build.Branch, build.Status, "total").Set(float64(build.Finished - build.Started))
|
||||||
|
}
|
||||||
|
if isMultiPipeline(procs) {
|
||||||
|
s.buildTime.WithLabelValues(repo.FullName, build.Branch, proc.State, proc.Name).Set(float64(proc.Stopped - proc.Started))
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -558,30 +565,41 @@ func createFilterFunc(filter rpc.Filter) (queue.Filter, error) {
|
||||||
|
|
||||||
// DroneServer is a grpc server implementation.
|
// DroneServer is a grpc server implementation.
|
||||||
type DroneServer struct {
|
type DroneServer struct {
|
||||||
Remote remote.Remote
|
peer RPC
|
||||||
Queue queue.Queue
|
}
|
||||||
Pubsub pubsub.Publisher
|
|
||||||
Logger logging.Log
|
func NewDroneServer(remote remote.Remote, queue queue.Queue, logger logging.Log, pubsub pubsub.Publisher, store store.Store, host string) *DroneServer {
|
||||||
Store store.Store
|
buildTime := promauto.NewGaugeVec(prometheus.GaugeOpts{
|
||||||
Host string
|
Namespace: "drone",
|
||||||
|
Name: "build_time",
|
||||||
|
Help: "Build time.",
|
||||||
|
}, []string{"repo", "branch", "status", "pipeline"})
|
||||||
|
buildCount := promauto.NewCounterVec(prometheus.CounterOpts{
|
||||||
|
Namespace: "drone",
|
||||||
|
Name: "build_count",
|
||||||
|
Help: "Build count.",
|
||||||
|
}, []string{"repo", "branch", "status", "pipeline"})
|
||||||
|
peer := RPC{
|
||||||
|
remote: remote,
|
||||||
|
store: store,
|
||||||
|
queue: queue,
|
||||||
|
pubsub: pubsub,
|
||||||
|
logger: logger,
|
||||||
|
host: host,
|
||||||
|
buildTime: buildTime,
|
||||||
|
buildCount: buildCount,
|
||||||
|
}
|
||||||
|
return &DroneServer{peer: peer}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Next(c oldcontext.Context, req *proto.NextRequest) (*proto.NextReply, error) {
|
func (s *DroneServer) Next(c oldcontext.Context, req *proto.NextRequest) (*proto.NextReply, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
filter := rpc.Filter{
|
filter := rpc.Filter{
|
||||||
Labels: req.GetFilter().GetLabels(),
|
Labels: req.GetFilter().GetLabels(),
|
||||||
Expr: req.GetFilter().GetExpr(),
|
Expr: req.GetFilter().GetExpr(),
|
||||||
}
|
}
|
||||||
|
|
||||||
res := new(proto.NextReply)
|
res := new(proto.NextReply)
|
||||||
pipeline, err := peer.Next(c, filter)
|
pipeline, err := s.peer.Next(c, filter)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
@ -598,14 +616,6 @@ func (s *DroneServer) Next(c oldcontext.Context, req *proto.NextRequest) (*proto
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Init(c oldcontext.Context, req *proto.InitRequest) (*proto.Empty, error) {
|
func (s *DroneServer) Init(c oldcontext.Context, req *proto.InitRequest) (*proto.Empty, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
state := rpc.State{
|
state := rpc.State{
|
||||||
Error: req.GetState().GetError(),
|
Error: req.GetState().GetError(),
|
||||||
ExitCode: int(req.GetState().GetExitCode()),
|
ExitCode: int(req.GetState().GetExitCode()),
|
||||||
|
@ -615,19 +625,11 @@ func (s *DroneServer) Init(c oldcontext.Context, req *proto.InitRequest) (*proto
|
||||||
Exited: req.GetState().GetExited(),
|
Exited: req.GetState().GetExited(),
|
||||||
}
|
}
|
||||||
res := new(proto.Empty)
|
res := new(proto.Empty)
|
||||||
err := peer.Init(c, req.GetId(), state)
|
err := s.peer.Init(c, req.GetId(), state)
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Update(c oldcontext.Context, req *proto.UpdateRequest) (*proto.Empty, error) {
|
func (s *DroneServer) Update(c oldcontext.Context, req *proto.UpdateRequest) (*proto.Empty, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
state := rpc.State{
|
state := rpc.State{
|
||||||
Error: req.GetState().GetError(),
|
Error: req.GetState().GetError(),
|
||||||
ExitCode: int(req.GetState().GetExitCode()),
|
ExitCode: int(req.GetState().GetExitCode()),
|
||||||
|
@ -637,19 +639,11 @@ func (s *DroneServer) Update(c oldcontext.Context, req *proto.UpdateRequest) (*p
|
||||||
Exited: req.GetState().GetExited(),
|
Exited: req.GetState().GetExited(),
|
||||||
}
|
}
|
||||||
res := new(proto.Empty)
|
res := new(proto.Empty)
|
||||||
err := peer.Update(c, req.GetId(), state)
|
err := s.peer.Update(c, req.GetId(), state)
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Upload(c oldcontext.Context, req *proto.UploadRequest) (*proto.Empty, error) {
|
func (s *DroneServer) Upload(c oldcontext.Context, req *proto.UploadRequest) (*proto.Empty, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
file := &rpc.File{
|
file := &rpc.File{
|
||||||
Data: req.GetFile().GetData(),
|
Data: req.GetFile().GetData(),
|
||||||
Mime: req.GetFile().GetMime(),
|
Mime: req.GetFile().GetMime(),
|
||||||
|
@ -661,19 +655,11 @@ func (s *DroneServer) Upload(c oldcontext.Context, req *proto.UploadRequest) (*p
|
||||||
}
|
}
|
||||||
|
|
||||||
res := new(proto.Empty)
|
res := new(proto.Empty)
|
||||||
err := peer.Upload(c, req.GetId(), file)
|
err := s.peer.Upload(c, req.GetId(), file)
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Done(c oldcontext.Context, req *proto.DoneRequest) (*proto.Empty, error) {
|
func (s *DroneServer) Done(c oldcontext.Context, req *proto.DoneRequest) (*proto.Empty, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
state := rpc.State{
|
state := rpc.State{
|
||||||
Error: req.GetState().GetError(),
|
Error: req.GetState().GetError(),
|
||||||
ExitCode: int(req.GetState().GetExitCode()),
|
ExitCode: int(req.GetState().GetExitCode()),
|
||||||
|
@ -683,47 +669,23 @@ func (s *DroneServer) Done(c oldcontext.Context, req *proto.DoneRequest) (*proto
|
||||||
Exited: req.GetState().GetExited(),
|
Exited: req.GetState().GetExited(),
|
||||||
}
|
}
|
||||||
res := new(proto.Empty)
|
res := new(proto.Empty)
|
||||||
err := peer.Done(c, req.GetId(), state)
|
err := s.peer.Done(c, req.GetId(), state)
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Wait(c oldcontext.Context, req *proto.WaitRequest) (*proto.Empty, error) {
|
func (s *DroneServer) Wait(c oldcontext.Context, req *proto.WaitRequest) (*proto.Empty, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
res := new(proto.Empty)
|
res := new(proto.Empty)
|
||||||
err := peer.Wait(c, req.GetId())
|
err := s.peer.Wait(c, req.GetId())
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Extend(c oldcontext.Context, req *proto.ExtendRequest) (*proto.Empty, error) {
|
func (s *DroneServer) Extend(c oldcontext.Context, req *proto.ExtendRequest) (*proto.Empty, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
res := new(proto.Empty)
|
res := new(proto.Empty)
|
||||||
err := peer.Extend(c, req.GetId())
|
err := s.peer.Extend(c, req.GetId())
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DroneServer) Log(c oldcontext.Context, req *proto.LogRequest) (*proto.Empty, error) {
|
func (s *DroneServer) Log(c oldcontext.Context, req *proto.LogRequest) (*proto.Empty, error) {
|
||||||
peer := RPC{
|
|
||||||
remote: s.Remote,
|
|
||||||
store: s.Store,
|
|
||||||
queue: s.Queue,
|
|
||||||
pubsub: s.Pubsub,
|
|
||||||
logger: s.Logger,
|
|
||||||
host: s.Host,
|
|
||||||
}
|
|
||||||
line := &rpc.Line{
|
line := &rpc.Line{
|
||||||
Out: req.GetLine().GetOut(),
|
Out: req.GetLine().GetOut(),
|
||||||
Pos: int(req.GetLine().GetPos()),
|
Pos: int(req.GetLine().GetPos()),
|
||||||
|
@ -731,6 +693,6 @@ func (s *DroneServer) Log(c oldcontext.Context, req *proto.LogRequest) (*proto.E
|
||||||
Proc: req.GetLine().GetProc(),
|
Proc: req.GetLine().GetProc(),
|
||||||
}
|
}
|
||||||
res := new(proto.Empty)
|
res := new(proto.Empty)
|
||||||
err := peer.Log(c, req.GetId(), line)
|
err := s.peer.Log(c, req.GetId(), line)
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue