This is an automated email from the ASF dual-hosted git repository. cshannon pushed a commit to branch elasticity in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/elasticity by this push: new 9a7af44338 Fix Compactors table on EC Monitor page (#4744) 9a7af44338 is described below commit 9a7af44338753539cf2605610af0b8cf3d7a3dc4 Author: Christopher L. Shannon <cshan...@apache.org> AuthorDate: Sat Jul 20 15:36:04 2024 -0400 Fix Compactors table on EC Monitor page (#4744) compactor.queue was renamed to compactor.group in #3591 and this updates the Monitor to use the new name so Compactors can be displayed correctly in the table on the external compations page. Before this change there the table was empty and there were errors in the javascript console. --- .../src/main/resources/org/apache/accumulo/monitor/resources/js/ec.js | 2 +- .../src/main/resources/org/apache/accumulo/monitor/templates/ec.ftl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/ec.js b/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/ec.js index 545c2559df..cf034a8123 100644 --- a/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/ec.js +++ b/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/ec.js @@ -61,7 +61,7 @@ $(document).ready(function () { "data": "server" }, { - "data": "queueName" + "data": "groupName" }, { "data": "lastContact" diff --git a/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/ec.ftl b/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/ec.ftl index b69b6ef017..37ac8b4d51 100644 --- a/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/ec.ftl +++ b/server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/ec.ftl @@ -49,7 +49,7 @@ <thead> <tr> <th class="firstcell" title="The hostname the compactor is running on.">Server</th> - <th title="The name of the queue this compactor is assigned.">Queue</th> + <th title="The name of the group this compactor is assigned.">Group</th> <th class="duration" title="Last time data was fetched. Server fetches on refresh, at most every minute.">Last Contact</th> </tr> </thead>