Skip to content

Commit b0f66cf

Browse files
committed
Fix title on table page
1 parent ea067c7 commit b0f66cf

File tree

2 files changed

+8
-8
lines changed
  • server/monitor/src/main/resources/org/apache/accumulo/monitor

2 files changed

+8
-8
lines changed

server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/table.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -173,23 +173,23 @@ function initTableServerTable(tableId) {
173173
},
174174
{
175175
"data": "totalAssignedTablets",
176-
"title": "Assigned Count"
176+
"title": "Assigned Tablet Count"
177177
},
178178
{
179179
"data": "totalAssignedToDeadServerTablets",
180-
"title": "AssignedToDeadServerTablets"
180+
"title": "Tablets Assigned to Dead Servers Count"
181181
},
182182
{
183183
"data": "totalHostedTablets",
184-
"title": "HostedTablets"
184+
"title": "Hosted Tablet Count"
185185
},
186186
{
187187
"data": "totalSuspendedTablets",
188-
"title": "SuspendedTablets"
188+
"title": "Suspended Tablet Count"
189189
},
190190
{
191191
"data": "totalUnassignedTablets",
192-
"title": "UnassignedTablets"
192+
"title": "Unassigned Tablet Count"
193193
}
194194
]
195195
});

server/monitor/src/main/resources/org/apache/accumulo/monitor/templates/table.ftl

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
</script>
2929
<div class="row">
3030
<div class="col-xs-12">
31-
<h3>Table Details: ${title} <small class="text-muted">(ID: ${tableId})</small></h3>
31+
<h3>Details for table ${table} <small>(ID: ${tableId})</small></h3>
3232
</div>
3333
</div>
3434
<div class="row">
3535
<div class="col-xs-12">
3636
<table id="participatingTServers" class="table caption-top table-bordered table-striped table-condensed">
37-
<caption><span class="table-caption">Table Summary for: ${table} <small>(ID: ${tableId})</small></span></caption>
37+
<caption><span class="table-caption">Table Summary</span></caption>
3838
<thead>
3939
<tr>
4040
<th class="big-num">Entry Count</th>
@@ -61,7 +61,7 @@
6161
<div class="row">
6262
<div class="col-xs-12">
6363
<table id="tabletsList" class="table caption-top table-bordered table-striped table-condensed">
64-
<caption><span class="table-caption">Tablet Details for: ${table} <small>(ID: ${tableId})</small></span></caption>
64+
<caption><span class="table-caption">Tablet Details</span></caption>
6565
<thead>
6666
<tr>
6767
<th>Tablet ID</th>

0 commit comments

Comments
 (0)