You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2017/07/04 17:10:22 UTC

[4/9] flink git commit: Rebuild web-frontend

http://git-wip-us.apache.org/repos/asf/flink/blob/cf1e57ee/flink-runtime-web/web-dashboard/web/partials/jobs/job.exceptions.html
----------------------------------------------------------------------
diff --git a/flink-runtime-web/web-dashboard/web/partials/jobs/job.exceptions.html b/flink-runtime-web/web-dashboard/web/partials/jobs/job.exceptions.html
index a5f6676..4b052a3 100644
--- a/flink-runtime-web/web-dashboard/web/partials/jobs/job.exceptions.html
+++ b/flink-runtime-web/web-dashboard/web/partials/jobs/job.exceptions.html
@@ -21,6 +21,10 @@ limitations under the License.
   <div class="panel-heading clearfix">
     <div class="panel-title">Root exception</div>
   </div>
+  <div class="panel-heading clearfix">
+    <div ng-if="exceptions['timestamp'] != -1" class="panel-info thin last"><strong>Timestamp:</strong> {{ exceptions['timestamp'] | amDateFormat:'YYYY-MM-DD, H:mm:ss' }}
+    </div>
+  </div>
   <div class="panel-body">
     <pre class="exception">{{ exceptions['root-exception'] }}</pre>
   </div>
@@ -30,7 +34,10 @@ limitations under the License.
     <div class="panel-title">{{ exception.task }}</div>
   </div>
   <div class="panel-heading clearfix">
-    <div class="panel-info thin last"><span>{{ exception.location }}</span></div>
+    <div ng-if="exception.timestamp != -1" class="panel-info thin"><strong>Timestamp:</strong> {{ exception.timestamp | amDateFormat:'YYYY-MM-DD, H:mm:ss' }}
+    </div>
+    <div class="panel-info thin last"><strong>Location:</strong> {{ exception.location }}
+    </div>
   </div>
   <div class="panel-body">
     <pre class="exception">{{ exception.exception }}</pre>