Source file worker_services.ml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
open Data_encoding
module Prevalidators = struct
module S = struct
let list =
Tezos_rpc.Service.get_service
~description:"Lists the Prevalidator workers and their status."
~query:Tezos_rpc.Query.empty
~output:
(list
(obj4
(req "chain_id" Chain_id.encoding)
(req
"status"
(Worker_types.worker_status_encoding
Tezos_rpc.Error.encoding))
(req
"information"
(Worker_types.worker_information_encoding
Tezos_rpc.Error.encoding))
(req "pipelines" int16)))
Tezos_rpc.Path.(root / "workers" / "prevalidators")
let state =
Tezos_rpc.Service.get_service
~description:"Introspect the state of prevalidator workers."
~query:Tezos_rpc.Query.empty
~output:
(Worker_types.full_status_encoding
Prevalidator_worker_state.Request.encoding
Tezos_rpc.Error.encoding)
Tezos_rpc.Path.(
root / "workers" / "prevalidators" /: Chain_services.chain_arg)
end
open Tezos_rpc.Context
let list ctxt = make_call S.list ctxt () () ()
let state ctxt h = make_call1 S.state ctxt h () ()
end
module Block_validator = struct
module S = struct
let state =
Tezos_rpc.Service.get_service
~description:"Introspect the state of the block_validator worker."
~query:Tezos_rpc.Query.empty
~output:
(Worker_types.full_status_encoding
Block_validator_worker_state.Request.encoding
Tezos_rpc.Error.encoding)
Tezos_rpc.Path.(root / "workers" / "block_validator")
end
open Tezos_rpc.Context
let state ctxt = make_call S.state ctxt () () ()
end
module Peer_validators = struct
module S = struct
let list =
Tezos_rpc.Service.get_service
~description:"Lists the peer validator workers and their status."
~query:Tezos_rpc.Query.empty
~output:
(list
(obj4
(req "peer_id" P2p_peer.Id.encoding)
(req
"status"
(Worker_types.worker_status_encoding
Tezos_rpc.Error.encoding))
(req
"information"
(Worker_types.worker_information_encoding
Tezos_rpc.Error.encoding))
(req
"pipelines"
Peer_validator_worker_state.pipeline_length_encoding)))
Tezos_rpc.Path.(
root / "workers" / "chain_validators" /: Chain_services.chain_arg
/ "peers_validators")
let state =
Tezos_rpc.Service.get_service
~description:"Introspect the state of a peer validator worker."
~query:Tezos_rpc.Query.empty
~output:
(Worker_types.full_status_encoding
Peer_validator_worker_state.Request.encoding
Tezos_rpc.Error.encoding)
Tezos_rpc.Path.(
root / "workers" / "chain_validators" /: Chain_services.chain_arg
/ "peers_validators" /: P2p_peer.Id.rpc_arg)
end
open Tezos_rpc.Context
let list ctxt n = make_call1 S.list ctxt n () ()
let state ctxt n h = make_call2 S.state ctxt n h () ()
end
module Chain_validators = struct
module S = struct
let list =
Tezos_rpc.Service.get_service
~description:"Lists the chain validator workers and their status."
~query:Tezos_rpc.Query.empty
~output:
(list
(obj4
(req "chain_id" Chain_id.encoding)
(req
"status"
(Worker_types.worker_status_encoding
Tezos_rpc.Error.encoding))
(req
"information"
(Worker_types.worker_information_encoding
Tezos_rpc.Error.encoding))
(req "pipelines" int16)))
Tezos_rpc.Path.(root / "workers" / "chain_validators")
let state =
Tezos_rpc.Service.get_service
~description:"Introspect the state of a chain validator worker."
~query:Tezos_rpc.Query.empty
~output:
(Worker_types.full_status_encoding
Chain_validator_worker_state.Request.encoding
Tezos_rpc.Error.encoding)
Tezos_rpc.Path.(
root / "workers" / "chain_validators" /: Chain_services.chain_arg)
let ddb_state =
Tezos_rpc.Service.get_service
~description:
"Introspect the state of the DDB attached to a chain validator \
worker."
~query:Tezos_rpc.Query.empty
~output:Chain_validator_worker_state.Distributed_db_state.encoding
Tezos_rpc.Path.(
root / "workers" / "chain_validators" /: Chain_services.chain_arg
/ "ddb")
end
open Tezos_rpc.Context
let list ctxt = make_call S.list ctxt () () ()
let state ctxt h = make_call1 S.state ctxt h () ()
let ddb_state ctxt h = make_call1 S.ddb_state ctxt h () ()
end