aboutsummaryrefslogtreecommitdiff
path: root/streaming/src/test/scala/org/apache
diff options
context:
space:
mode:
authorzsxwing <zsxwing@gmail.com>2015-05-12 14:41:21 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2015-05-12 14:41:21 -0700
commit1422e79e517ca14a6b0e178f015362d2e0d413c6 (patch)
treed28d67c4460418518a703aaa8a5cc13665ca2de0 /streaming/src/test/scala/org/apache
parenta4874b0d1820efd24071108434a4d89429473fe3 (diff)
downloadspark-1422e79e517ca14a6b0e178f015362d2e0d413c6.tar.gz
spark-1422e79e517ca14a6b0e178f015362d2e0d413c6.tar.bz2
spark-1422e79e517ca14a6b0e178f015362d2e0d413c6.zip
[SPARK-7406] [STREAMING] [WEBUI] Add tooltips for "Scheduling Delay", "Processing Time" and "Total Delay"
Screenshots: ![screen shot 2015-05-06 at 2 29 03 pm](https://cloud.githubusercontent.com/assets/1000778/7504129/9c57f710-f3fc-11e4-9c6e-1b79c17c546d.png) ![screen shot 2015-05-06 at 2 24 35 pm](https://cloud.githubusercontent.com/assets/1000778/7504140/b63bb216-f3fc-11e4-83a5-6dfc6481d192.png) tdas as we discussed offline Author: zsxwing <zsxwing@gmail.com> Closes #5952 from zsxwing/SPARK-7406 and squashes the following commits: 2b004ea [zsxwing] Merge branch 'master' into SPARK-7406 e9eb506 [zsxwing] Update tooltip contents 2215b2a [zsxwing] Add tooltips for "Scheduling Delay", "Processing Time" and "Total Delay"
Diffstat (limited to 'streaming/src/test/scala/org/apache')
-rw-r--r--streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala b/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala
index 2211f62383..441bbf95d0 100644
--- a/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala
+++ b/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala
@@ -116,12 +116,12 @@ class UISeleniumSuite
h4Text.exists(_.matches("Completed Batches \\(last \\d+ out of \\d+\\)")) should be (true)
findAll(cssSelector("""#active-batches-table th""")).map(_.text).toSeq should be {
- List("Batch Time", "Input Size", "Scheduling Delay", "Processing Time",
+ List("Batch Time", "Input Size", "Scheduling Delay (?)", "Processing Time (?)",
"Status")
}
findAll(cssSelector("""#completed-batches-table th""")).map(_.text).toSeq should be {
- List("Batch Time", "Input Size", "Scheduling Delay", "Processing Time",
- "Total Delay")
+ List("Batch Time", "Input Size", "Scheduling Delay (?)", "Processing Time (?)",
+ "Total Delay (?)")
}
val batchLinks =