From b50fa320889af1637b8013348e83806bf8861bf6 Mon Sep 17 00:00:00 2001 From: zsxwing Date: Fri, 1 May 2015 20:30:19 -0700 Subject: [PATCH] Jump to the batch page when clicking a point in the timeline graphs --- .../resources/org/apache/spark/ui/static/streaming-page.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/main/resources/org/apache/spark/ui/static/streaming-page.js b/core/src/main/resources/org/apache/spark/ui/static/streaming-page.js index acf5504ac4edf..43a803a6f5a88 100644 --- a/core/src/main/resources/org/apache/spark/ui/static/streaming-page.js +++ b/core/src/main/resources/org/apache/spark/ui/static/streaming-page.js @@ -164,6 +164,9 @@ function drawTimeline(id, data, minX, maxX, minY, maxY, unitY, batchInterval) { .attr("stroke", "white") .attr("fill", "white") .attr("opacity", "0"); + }) + .on("click", function(d) { + window.location.href = "batch/?id=" + d.x; }); }