[dpdk-dev] [PATCH v3] doc: add more detail to telemetry guides

2020-07-24 Thread Ciara Power
This patch adds examples to the Telemetry HowTo guide, to demonstrate commands that use parameters. The programmer's guide is also modified to include details on writing a callback function for a new command. Signed-off-by: Ciara Power --- v3: - Replaced direct code examples with generic examp

Re: [dpdk-dev] [PATCH v3] doc: add more detail to telemetry guides

2020-07-24 Thread Power, Ciara
>-Original Message- >From: Power, Ciara >Sent: Friday 24 July 2020 12:21 >To: Laatz, Kevin >Cc: dev@dpdk.org; Richardson, Bruce ; >tho...@monjalon.net; Power, Ciara >Subject: [PATCH v3] doc: add more detail to telemetry guides > >This patch adds examples to the Telemetry HowTo guide, t

Re: [dpdk-dev] [PATCH v3] doc: add more detail to telemetry guides

2020-07-30 Thread Thomas Monjalon
24/07/2020 13:20, Ciara Power: > +**Example Callback** > + > +This callback is an example of handling multiple commands in one callback, > +and also shows the use of params which holds a port ID. The params input > needs > +to be validated and converted to the required integer type for port ID. Th