Skip to content

Commit

Permalink
Suppress Remaining Buffer when channel is IPC
Browse files Browse the repository at this point in the history
  • Loading branch information
epickrram committed May 28, 2019
1 parent c1fa256 commit 27a9870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ function renderStreamData(allData) {
html += pubStatRow('Sender Position', publisher.senderPosition, '', false);
html += pubStatRow('Sender Limit', publisher.senderLimit, '', false);
html += pubStatRow('Queued', publisher.sendBacklog, backlogCls, false);
html += pubStatRow('Remaining Buffer', publisher.remainingBuffer, '', false);
}
html += pubStatRow('Remaining Buffer', publisher.remainingBuffer, '', false);
html += pubStatRow('Back Pressure', publisher.backPressureEvents, bpeCls, true);
var subscriberSet = publisher.subscribers;

Expand Down

0 comments on commit 27a9870

Please sign in to comment.