82857dcb94
- `lib_node_p2p_base`: Base datatypes for the P2P layers - `lib_node_services`: RPC service definitions (depends on `node_p2p_base`) - `lib_node_http`: RPC http server - `lib_node_p2p`: the P2P workers
73 lines
2.9 KiB
OCaml
73 lines
2.9 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
open Client_commands
|
|
open P2p_types
|
|
|
|
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"
|
|
no_options
|
|
(prefixes ["network" ; "stat"] stop) begin fun () cctxt ->
|
|
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 ->
|
|
cctxt.message "GLOBAL STATS" >>= fun () ->
|
|
cctxt.message " %a" Stat.pp stat >>= fun () ->
|
|
cctxt.message "CONNECTIONS" >>= fun () ->
|
|
let incoming, outgoing =
|
|
List.partition (fun c -> c.Connection_info.incoming) conns in
|
|
Lwt_list.iter_s begin fun conn ->
|
|
cctxt.message " %a" Connection_info.pp conn
|
|
end incoming >>= fun () ->
|
|
Lwt_list.iter_s begin fun conn ->
|
|
cctxt.message " %a" Connection_info.pp conn
|
|
end outgoing >>= fun () ->
|
|
cctxt.message "KNOWN PEERS" >>= fun () ->
|
|
Lwt_list.iter_s begin fun (p, pi) ->
|
|
cctxt.message " %a %.0f %a %a %s"
|
|
Peer_state.pp_digram pi.Peer_info.state
|
|
pi.score
|
|
Peer_id.pp p
|
|
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) ->
|
|
match pi.Point_info.state with
|
|
| Running peer_id ->
|
|
cctxt.message " %a %a %a %s"
|
|
Point_state.pp_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_state.pp_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_state.pp_digram pi.state
|
|
Point.pp p
|
|
(if pi.trusted then "★" else " ")
|
|
end points >>= fun () ->
|
|
return ()
|
|
end
|
|
]
|