NIFI-2659: Fixed RPG Received stats. This closes #939

It was showing the 'Sent' stats as 'Received' stats.
This commit is contained in:
Koji Kawamura 2016-08-25 15:56:21 +09:00 committed by Matt Gilman
parent 8536ad65f4
commit afb9a0016f
1 changed files with 2 additions and 2 deletions

View File

@ -678,13 +678,13 @@ nf.RemoteProcessGroup = (function () {
// received count value
updated.select('text.remote-process-group-received tspan.count')
.text(function (d) {
return nf.Common.substringBeforeFirst(d.status.aggregateSnapshot.sent, ' ');
return nf.Common.substringBeforeFirst(d.status.aggregateSnapshot.received, ' ');
});
// received size value
updated.select('text.remote-process-group-received tspan.size')
.text(function (d) {
return ' ' + nf.Common.substringAfterFirst(d.status.aggregateSnapshot.sent, ' ');
return ' ' + nf.Common.substringAfterFirst(d.status.aggregateSnapshot.received, ' ');
});
// --------------------