Description
RPG component shows Sent and Received statistics. Sent stats is shown correctly, but Received stats also uses the Sent stats. Because of that, the correct Received stats is not shown.
Corresponding JS code uses 'sent' stats for 'received' wrongly:
nf-remote-process-group.js
// received count value updated.select('text.remote-process-group-received tspan.count') .text(function (d) { return nf.Common.substringBeforeFirst(d.status.aggregateSnapshot.sent, ' '); }); // received size value updated.select('text.remote-process-group-received tspan.size') .text(function (d) { return ' ' + nf.Common.substringAfterFirst(d.status.aggregateSnapshot.sent, ' '); });
Attachments
Attachments
Issue Links
- links to