X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=blobdiff_plain;f=src%2Fvpp%2Fstats%2Fstats.api;h=c94471ae93c6f718a879893263a8b6c3acf7f9f4;hp=bd1c3f634fe737574fc62dce719e4a736325fe8a;hb=b6d92d811ce39efd5276d1499afde7a1628d03ca;hpb=048a4e5a000017d0d632ebf02dcc23d9bf9ccf72 diff --git a/src/vpp/stats/stats.api b/src/vpp/stats/stats.api index bd1c3f634fe..c94471ae93c 100644 --- a/src/vpp/stats/stats.api +++ b/src/vpp/stats/stats.api @@ -18,9 +18,10 @@ This file defines the stats API */ -option version = "1.0.0"; +option version = "1.0.2"; import "vnet/interface.api"; +import "vnet/bier/bier.api"; service { rpc want_stats @@ -58,8 +59,9 @@ service { rpc want_udp_encap_stats returns want_udp_encap_stats_reply events vnet_udp_encap_counters; - rpc map_stats_segment - returns map_stats_segment_reply; + rpc want_bier_neighbor_stats + returns want_bier_neighbor_stats_reply + events vnet_bier_neighbor_counters; }; /** \brief Want Stats, enable/disable ALL stats updates @@ -175,7 +177,7 @@ autoreply define want_ip6_fib_stats u32 pid; }; -/** \brief Want IP4 muilticast FIB Stats, register for continuous stats +/** \brief Want IP4 multicast FIB Stats, register for continuous stats @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request @param enable_disable - 1 = enable stats, 0 = disable @@ -271,7 +273,7 @@ typeonly manual_print manual_endian define ip4_nbr_counter }; /** - * @brief Per-neighbour (i.e. per-adjacency) coutners + * @brief Per-neighbour (i.e. per-adjacency) counters * @param count The size of the array of counters * @param sw_if_index The interface the adjacency is on * @param begin Flag to indicate this is the first set of stats for this @@ -406,16 +408,18 @@ define vnet_get_summary_stats /** \brief Reply for vnet_get_summary_stats request @param context - sender context, to match reply w/ request @param retval - return code for request - @param total_pkts - - @param total_bytes - + @param total_pkts - length of the array must match the length of + the combined counter part of the enum in interface.h + @param total_bytes - length of the array must match the length of + the combined counter part of the enum in interface.h @param vector_rate - */ define vnet_get_summary_stats_reply { u32 context; i32 retval; - u64 total_pkts[2]; - u64 total_bytes[2]; + u64 total_pkts[8]; + u64 total_bytes[8]; f64 vector_rate; }; @@ -474,12 +478,41 @@ manual_print manual_endian define vnet_udp_encap_counters vl_api_udp_encap_counter_t c[count]; }; -autoreply define map_stats_segment +/** \brief Want BIER neighbor Stats, register for continuous stats + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param enable - 1 = enable stats, 0 = disable + @param pid - pid of process requesting stats updates +*/ +autoreply define want_bier_neighbor_stats { u32 client_index; u32 context; -}; + u32 enable; + u32 pid; +}; + +/** \brief Stat for one BIER neighbor object + @param tbl_id - The BIER Table ID the neighbour belongs to. + @param path - The path describing the neighbor (this is the data + given during a BIER route add) + @param packets - number of packets sent + @param bytes - number of bytes sent +*/ +typeonly manual_print manual_endian define bier_neighbor_counter +{ + vl_api_bier_table_id_t tbl_id; + vl_api_fib_path_t path; + u64 packets; + u64 bytes; +}; +manual_print manual_endian define vnet_bier_neighbor_counters +{ + u32 timestamp; + u32 count; + vl_api_bier_neighbor_counter_t c[count]; +}; /* * Local Variables: