tgravescs commented on a change in pull request #27292: [SPARK-30582][WEBUI]
Spark UI is not showing Aggregated Metrics by Executor in stage page
URL: https://github.com/apache/spark/pull/27292#discussion_r370359350
##########
File path: core/src/main/resources/org/apache/spark/ui/static/stagepage.js
##########
@@ -325,6 +325,25 @@ $(document).ready(function () {
$('[data-toggle="tooltip"]').tooltip();
var tasksSummary = $("#parent-container");
getStandAloneAppId(function (appId) {
+ // rendering the UI page
+ $.get(createTemplateURI(appId, "stagespage"), function(template) {
+
tasksSummary.append(Mustache.render($(template).filter("#stages-summary-template").html()));
+
+ $("#additionalMetrics").click(function(){
+ $("#arrowtoggle1").toggleClass("arrow-open arrow-closed");
+ $("#toggle-metrics").toggle();
+ if (window.localStorage) {
+ window.localStorage.setItem("arrowtoggle1class",
$("#arrowtoggle1").attr('class'));
Review comment:
fix spacing
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]