summaryrefslogtreecommitdiff
path: root/zebra/zserv.c
diff options
context:
space:
mode:
Diffstat (limited to 'zebra/zserv.c')
-rw-r--r--zebra/zserv.c31
1 files changed, 17 insertions, 14 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c
index 0bf4d8ece2..1d94fcae6b 100644
--- a/zebra/zserv.c
+++ b/zebra/zserv.c
@@ -1070,8 +1070,14 @@ static void zebra_show_client_detail(struct vty *vty, struct zserv *client)
0, client->redist_v4_del_cnt);
vty_out(vty, "Redist:v6 %-12u%-12u%-12u\n", client->redist_v6_add_cnt,
0, client->redist_v6_del_cnt);
+ vty_out(vty, "VRF %-12u%-12u%-12u\n", client->vrfadd_cnt, 0,
+ client->vrfdel_cnt);
vty_out(vty, "Connected %-12u%-12u%-12u\n", client->ifadd_cnt, 0,
client->ifdel_cnt);
+ vty_out(vty, "Interface %-12u%-12u%-12u\n", client->ifup_cnt, 0,
+ client->ifdown_cnt);
+ vty_out(vty, "Intf Addr %-12u%-12u%-12u\n",
+ client->connected_rt_add_cnt, 0, client->connected_rt_del_cnt);
vty_out(vty, "BFD peer %-12u%-12u%-12u\n", client->bfd_peer_add_cnt,
client->bfd_peer_upd8_cnt, client->bfd_peer_del_cnt);
vty_out(vty, "NHT v4 %-12u%-12u%-12u\n",
@@ -1080,20 +1086,17 @@ static void zebra_show_client_detail(struct vty *vty, struct zserv *client)
client->v6_nh_watch_add_cnt, 0, client->v6_nh_watch_rem_cnt);
vty_out(vty, "VxLAN SG %-12u%-12u%-12u\n", client->vxlan_sg_add_cnt,
0, client->vxlan_sg_del_cnt);
- vty_out(vty, "Interface Up Notifications: %u\n", client->ifup_cnt);
- vty_out(vty, "Interface Down Notifications: %u\n", client->ifdown_cnt);
- vty_out(vty, "VNI add notifications: %u\n", client->vniadd_cnt);
- vty_out(vty, "VNI delete notifications: %u\n", client->vnidel_cnt);
- vty_out(vty, "L3-VNI add notifications: %u\n", client->l3vniadd_cnt);
- vty_out(vty, "L3-VNI delete notifications: %u\n", client->l3vnidel_cnt);
- vty_out(vty, "MAC-IP add notifications: %u\n", client->macipadd_cnt);
- vty_out(vty, "MAC-IP delete notifications: %u\n", client->macipdel_cnt);
- vty_out(vty, "ES add notifications: %u\n", client->local_es_add_cnt);
- vty_out(vty, "ES delete notifications: %u\n", client->local_es_del_cnt);
- vty_out(vty, "ES-EVI add notifications: %u\n",
- client->local_es_evi_add_cnt);
- vty_out(vty, "ES-EVI delete notifications: %u\n",
- client->local_es_evi_del_cnt);
+ vty_out(vty, "VNI %-12u%-12u%-12u\n", client->vniadd_cnt, 0,
+ client->vnidel_cnt);
+ vty_out(vty, "L3-VNI %-12u%-12u%-12u\n", client->l3vniadd_cnt, 0,
+ client->l3vnidel_cnt);
+ vty_out(vty, "MAC-IP %-12u%-12u%-12u\n", client->macipadd_cnt, 0,
+ client->macipdel_cnt);
+ vty_out(vty, "ES %-12u%-12u%-12u\n", client->local_es_add_cnt,
+ 0, client->local_es_del_cnt);
+ vty_out(vty, "ES-EVI %-12u%-12u%-12u\n",
+ client->local_es_evi_add_cnt, 0, client->local_es_evi_del_cnt);
+ vty_out(vty, "Errors: %u\n", client->error_cnt);
TAILQ_FOREACH (info, &client->gr_info_queue, gr_info) {
vty_out(vty, "VRF : %s\n", vrf_id_to_name(info->vrf_id));