Re: [RFC PATCH] usertools: add telemetry exporter

2024-04-01 Thread Robin Jarry
Anthony Harivel, Mar 27, 2024 at 16:18: Hi Robin, Thanks for this patch. I did test it and it works as expected. Nonetheless, maybe we can improve on some parts. Hey Anthony, thanks a lot for testing! In 'class TelemetrySocket', there is: ... self.sock.connect(path) data = json.loads(self.

[RFC PATCH] usertools: add telemetry exporter

2024-03-27 Thread Anthony Harivel
Hi Robin, Thanks for this patch. I did test it and it works as expected. Nonetheless, maybe we can improve on some parts. In 'class TelemetrySocket', there is: ... self.sock.connect(path) data = json.loads(self.sock.recv(1024).decode()) ... Maybe we can improve with something like:

Re: [RFC PATCH] usertools: add telemetry exporter

2023-11-20 Thread Robin Jarry
Gentle ping. Is anybody interested in this?

[RFC PATCH] usertools: add telemetry exporter

2023-09-26 Thread Robin Jarry
For now the telemetry socket is local to the machine running a DPDK application. Also, there is no official "schema" for the exposed metrics. Add a framework and a script to collect and expose these metrics to telemetry and observability agree gators such as Prometheus, Carbon or Influxdb. The expo