2017-03-02 18:39:36 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2017-03-02 18:39:36 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2017-04-05 01:35:41 +04:00
|
|
|
open Client_commands
|
|
|
|
|
2017-03-02 18:39:36 +04:00
|
|
|
let group =
|
|
|
|
{ Cli_entries.name = "network" ;
|
|
|
|
title = "Commands for monitoring and controlling network state" }
|
|
|
|
|
|
|
|
let commands () = [
|
|
|
|
let open Cli_entries in
|
|
|
|
command ~group ~desc: "show global network status"
|
2017-09-19 13:31:35 +04:00
|
|
|
no_options
|
|
|
|
(prefixes ["network" ; "stat"] stop) begin fun () cctxt ->
|
2017-04-05 01:35:41 +04:00
|
|
|
Client_node_rpcs.Network.stat cctxt.rpc_config >>=? fun stat ->
|
|
|
|
Client_node_rpcs.Network.connections cctxt.rpc_config >>=? fun conns ->
|
|
|
|
Client_node_rpcs.Network.peers cctxt.rpc_config >>=? fun peers ->
|
|
|
|
Client_node_rpcs.Network.points cctxt.rpc_config >>=? fun points ->
|
2017-03-02 18:39:36 +04:00
|
|
|
cctxt.message "GLOBAL STATS" >>= fun () ->
|
|
|
|
cctxt.message " %a" P2p_types.Stat.pp stat >>= fun () ->
|
|
|
|
cctxt.message "CONNECTIONS" >>= fun () ->
|
|
|
|
let incoming, outgoing =
|
|
|
|
List.partition (fun c -> c.P2p_types.Connection_info.incoming) conns in
|
|
|
|
Lwt_list.iter_s begin fun conn ->
|
|
|
|
cctxt.message " %a" P2p_types.Connection_info.pp conn
|
|
|
|
end incoming >>= fun () ->
|
|
|
|
Lwt_list.iter_s begin fun conn ->
|
|
|
|
cctxt.message " %a" P2p_types.Connection_info.pp conn
|
|
|
|
end outgoing >>= fun () ->
|
|
|
|
cctxt.message "KNOWN PEERS" >>= fun () ->
|
|
|
|
Lwt_list.iter_s begin fun (p, pi) ->
|
|
|
|
let open P2p.RPC.Peer_id in
|
|
|
|
cctxt.message " %a %.0f %a %a %s"
|
|
|
|
pp_state_digram pi.state
|
|
|
|
pi.score
|
|
|
|
pp p P2p_types.Stat.pp pi.stat
|
|
|
|
(if pi.trusted then "★" else " ")
|
|
|
|
end peers >>= fun () ->
|
|
|
|
cctxt.message "KNOWN POINTS" >>= fun () ->
|
|
|
|
Lwt_list.iter_s begin fun (p, pi) ->
|
|
|
|
let open P2p.RPC in
|
|
|
|
match pi.Point.state with
|
|
|
|
| Running peer_id ->
|
|
|
|
cctxt.message " %a %a %a %s"
|
|
|
|
Point.pp_state_digram pi.state
|
|
|
|
Point.pp p
|
|
|
|
Peer_id.pp peer_id
|
|
|
|
(if pi.trusted then "★" else " ")
|
|
|
|
| _ ->
|
|
|
|
match pi.last_seen with
|
|
|
|
| Some (peer_id, ts) ->
|
|
|
|
cctxt.message " %a %a (last seen: %a %a) %s"
|
|
|
|
Point.pp_state_digram pi.state
|
|
|
|
Point.pp p
|
|
|
|
Peer_id.pp peer_id
|
|
|
|
Time.pp_hum ts
|
|
|
|
(if pi.trusted then "★" else " ")
|
|
|
|
| None ->
|
|
|
|
cctxt.message " %a %a %s"
|
|
|
|
Point.pp_state_digram pi.state
|
|
|
|
Point.pp p
|
|
|
|
(if pi.trusted then "★" else " ")
|
|
|
|
end points >>= fun () ->
|
2017-04-05 01:35:41 +04:00
|
|
|
return ()
|
2017-03-02 18:39:36 +04:00
|
|
|
end
|
|
|
|
]
|