Github user kishorvpatil commented on a diff in the pull request: https://github.com/apache/storm/pull/875#discussion_r45111484 --- Diff: storm-core/src/ui/public/index.html --- @@ -143,6 +143,12 @@ ] }); $('#topology-summary [data-toggle="tooltip"]').tooltip(); + $.getJSON("/api/v1/cluster/configuration", function(json){ + var displayResource = json["scheduler.display.resource"]; + if (!displayResource){ + $('#topology-summary td:nth-child(10),#topology-summary th:nth-child(10)').hide(); --- End diff -- Let's avoid referring to fields by number which could change in future and make maintenance harder..
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---