mirror of https://github.com/apache/nifi.git
NIFI-2659: Fixed RPG Received stats. This closes #939
It was showing the 'Sent' stats as 'Received' stats.
This commit is contained in:
parent
8536ad65f4
commit
afb9a0016f
|
@ -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, ' ');
|
||||
});
|
||||
|
||||
// --------------------
|
||||
|
|
Loading…
Reference in New Issue