Line data Source code
1 : /* 2 : * Copyright (c) 2016 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #include "bgp/peer_stats.h" 6 : 7 600 : void PeerStats::FillProtoStats(const IPeerDebugStats::ProtoStats &stats, 8 : PeerProtoStats *proto_stats) { 9 600 : proto_stats->set_open(stats.open); 10 600 : proto_stats->set_keepalive(stats.keepalive); 11 600 : proto_stats->set_close(stats.close); 12 600 : proto_stats->set_update(stats.update); 13 600 : proto_stats->set_notification(stats.notification); 14 600 : proto_stats->set_total(stats.open + stats.keepalive + stats.close + 15 600 : stats.update + stats.notification); 16 600 : } 17 : 18 1200 : void PeerStats::FillRouteUpdateStats(const IPeerDebugStats::UpdateStats &stats, 19 : PeerUpdateStats *rt_stats) { 20 1200 : rt_stats->set_total(stats.total); 21 1200 : rt_stats->set_reach(stats.reach); 22 1200 : rt_stats->set_unreach(stats.unreach); 23 1200 : } 24 : 25 300 : void PeerStats::FillRxErrorStats(const IPeerDebugStats::RxErrorStats &src, 26 : PeerRxErrorStats *dest) { 27 300 : PeerRxInet6ErrorStats error_stats; 28 300 : error_stats.set_bad_inet6_xml_token_count(src.inet6_bad_xml_token_count); 29 300 : error_stats.set_bad_inet6_prefix_count(src.inet6_bad_prefix_count); 30 300 : error_stats.set_bad_inet6_nexthop_count(src.inet6_bad_nexthop_count); 31 300 : error_stats.set_bad_inet6_afi_safi_count(src.inet6_bad_afi_safi_count); 32 300 : dest->set_inet6_error_stats(error_stats); 33 300 : } 34 : 35 300 : void PeerStats::FillRxRouteStats(const IPeerDebugStats::RxRouteStats &src, 36 : PeerRxRouteStats *dest) { 37 300 : dest->set_total_path_count(src.total_path_count); 38 300 : dest->set_primary_path_count(src.primary_path_count); 39 300 : } 40 : 41 600 : void PeerStats::FillPeerUpdateStats(const IPeerDebugStats *peer_stats, 42 : PeerUpdateStats *rt_stats_rx, 43 : PeerUpdateStats *rt_stats_tx) { 44 : 45 600 : IPeerDebugStats::UpdateStats update_stats_rx; 46 600 : peer_stats->GetRxRouteUpdateStats(&update_stats_rx); 47 600 : FillRouteUpdateStats(update_stats_rx, rt_stats_rx); 48 : 49 600 : IPeerDebugStats::UpdateStats update_stats_tx; 50 600 : peer_stats->GetTxRouteUpdateStats(&update_stats_tx); 51 600 : FillRouteUpdateStats(update_stats_tx, rt_stats_tx); 52 600 : } 53 : 54 300 : void PeerStats::FillPeerUpdateStats(const IPeerDebugStats *peer_stats, 55 : PeerStatsData *peer_stats_data) { 56 300 : PeerUpdateStats stats_rx; 57 300 : PeerUpdateStats stats_tx; 58 : 59 300 : FillPeerUpdateStats(peer_stats, &stats_rx, &stats_tx); 60 300 : peer_stats_data->set_raw_rx_update_stats(stats_rx); 61 300 : peer_stats_data->set_raw_tx_update_stats(stats_tx); 62 300 : } 63 : 64 300 : void PeerStats::FillPeerDebugStats(const IPeerDebugStats *peer_stats, 65 : PeerStatsInfo *stats) { 66 300 : PeerProtoStats proto_stats_tx; 67 300 : PeerProtoStats proto_stats_rx; 68 300 : PeerUpdateStats rt_stats_rx; 69 300 : PeerUpdateStats rt_stats_tx; 70 300 : PeerRxErrorStats dest_error_stats_rx; 71 300 : PeerRxRouteStats dest_route_stats_rx; 72 : 73 300 : IPeerDebugStats::ProtoStats stats_rx; 74 300 : peer_stats->GetRxProtoStats(&stats_rx); 75 300 : FillProtoStats(stats_rx, &proto_stats_rx); 76 : 77 300 : IPeerDebugStats::ProtoStats stats_tx; 78 300 : peer_stats->GetTxProtoStats(&stats_tx); 79 300 : FillProtoStats(stats_tx, &proto_stats_tx); 80 : 81 300 : FillPeerUpdateStats(peer_stats, &rt_stats_rx, &rt_stats_tx); 82 : 83 300 : IPeerDebugStats::RxErrorStats src_error_stats_rx; 84 300 : peer_stats->GetRxErrorStats(&src_error_stats_rx); 85 300 : FillRxErrorStats(src_error_stats_rx, &dest_error_stats_rx); 86 : 87 300 : IPeerDebugStats::RxRouteStats src_route_stats_rx; 88 300 : peer_stats->GetRxRouteStats(&src_route_stats_rx); 89 300 : FillRxRouteStats(src_route_stats_rx, &dest_route_stats_rx); 90 : 91 300 : stats->set_rx_proto_stats(proto_stats_rx); 92 300 : stats->set_tx_proto_stats(proto_stats_tx); 93 300 : stats->set_rx_update_stats(rt_stats_rx); 94 300 : stats->set_tx_update_stats(rt_stats_tx); 95 300 : stats->set_rx_error_stats(dest_error_stats_rx); 96 300 : stats->set_rx_route_stats(dest_route_stats_rx); 97 300 : }