blob: b0b5b1afe03811c808c5c5de5a1343705749e9ef (
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
45
46
|
package informer
import (
"github.com/spiral/roadrunner/v2/pkg/process"
"github.com/spiral/roadrunner/v2/plugins/logger"
)
type rpc struct {
srv *Plugin
log logger.Logger
}
// WorkerList contains list of workers.
type WorkerList struct {
// Workers is list of workers.
Workers []process.State `json:"workers"`
}
// List all resettable services.
func (rpc *rpc) List(_ bool, list *[]string) error {
rpc.log.Debug("Started List method")
*list = make([]string, 0, len(rpc.srv.registry))
for name := range rpc.srv.registry {
*list = append(*list, name)
}
rpc.log.Debug("list of services", "list", *list)
rpc.log.Debug("successfully finished List method")
return nil
}
// Workers state of a given service.
func (rpc *rpc) Workers(service string, list *WorkerList) error {
rpc.log.Debug("started Workers method", "service", service)
workers, err := rpc.srv.Workers(service)
if err != nil {
return err
}
// write actual processes
list.Workers = workers
rpc.log.Debug("list of workers", "workers", list.Workers)
rpc.log.Debug("successfully finished Workers method")
return nil
}
|