Github user srdo commented on the issue:
https://github.com/apache/storm/pull/2794
Grepping for "totalExecutors" also pops up a couple of other locations in
storm-webapp.
```
./storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java:536:
int totalExecutors =
./storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java:574:
result.put("totalExecutors", totalExecutors);
./storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java:631:
result.put("totalExecutors", ownerResourceSummary.get_total_executors());
./storm-webapp/src/main/java/org/apache/storm/daemon/ui/WEB-INF/js/script.js:541:
data: 'totalExecutors',
./storm-webapp/src/main/java/org/apache/storm/daemon/ui/WEB-INF/owner.html:148:
//owner,totalTopologies,totalTasks,totalExecutors,totalWorkers
./storm-webapp/src/main/java/org/apache/storm/daemon/ui/WEB-INF/templates/owner-page-template.html:51:
<td>{{totalExecutors}}</td>
```
Do any of the others also need to be changed?
---