aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/resources/org
diff options
context:
space:
mode:
authorKay Ousterhout <kayousterhout@gmail.com>2014-12-09 15:10:36 -0800
committerKay Ousterhout <kayousterhout@gmail.com>2014-12-09 15:10:36 -0800
commit1f5110630c1abb13a357b463c805a39772923b82 (patch)
treeed383c498de32b652ab26174a8218b31572e4b39 /core/src/main/resources/org
parentb31074466a83d3d1387fc1e4337dfab9e164fc04 (diff)
downloadspark-1f5110630c1abb13a357b463c805a39772923b82.tar.gz
spark-1f5110630c1abb13a357b463c805a39772923b82.tar.bz2
spark-1f5110630c1abb13a357b463c805a39772923b82.zip
[SPARK-4765] Make GC time always shown in UI.
This commit removes the GC time for each task from the set of optional, additional metrics, and instead always shows it for each task. cc pwendell Author: Kay Ousterhout <kayousterhout@gmail.com> Closes #3622 from kayousterhout/gc_time and squashes the following commits: 15ac242 [Kay Ousterhout] Make TaskDetailsClassNames private[spark] e71d893 [Kay Ousterhout] [SPARK-4765] Make GC time always shown in UI.
Diffstat (limited to 'core/src/main/resources/org')
-rw-r--r--core/src/main/resources/org/apache/spark/ui/static/webui.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/resources/org/apache/spark/ui/static/webui.css b/core/src/main/resources/org/apache/spark/ui/static/webui.css
index cdf85bfbf3..68c52ac09b 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/webui.css
+++ b/core/src/main/resources/org/apache/spark/ui/static/webui.css
@@ -171,6 +171,6 @@ span.additional-metric-title {
/* Hide all additional metrics by default. This is done here rather than using JavaScript to
* avoid slow page loads for stage pages with large numbers (e.g., thousands) of tasks. */
-.scheduler_delay, .gc_time, .deserialization_time, .serialization_time, .getting_result_time {
+.scheduler_delay, .deserialization_time, .serialization_time, .getting_result_time {
display: none;
}