blob: 38db9a619c773d9776c48e7113f578d886afc857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package http
import (
"github.com/sirupsen/logrus"
"github.com/spiral/roadrunner/utils"
"github.com/pkg/errors"
)
type rpcServer struct {
service *Service
}
// WorkerList contains list of workers.
type WorkerList struct {
// Workers is list of workers.
Workers []utils.Worker `json:"workers"`
}
// Reset resets underlying RR worker pool and restarts all of it's workers.
func (rpc *rpcServer) Reset(reset bool, r *string) error {
if rpc.service.srv == nil {
return errors.New("no http server")
}
logrus.Info("http: restarting worker pool")
*r = "OK"
err := rpc.service.srv.rr.Reset()
if err != nil {
logrus.Errorf("http: %s", err)
}
return err
}
// Workers returns list of active workers and their stats.
func (rpc *rpcServer) Workers(list bool, r *WorkerList) error {
if rpc.service.srv == nil {
return errors.New("no http server")
}
r.Workers = utils.FetchWorkers(rpc.service.srv.rr)
return nil
}
|