From 9a6490fe5414569551aaa0b3764bc1c1f81fb151 Mon Sep 17 00:00:00 2001 From: earrage Date: Sat, 27 Oct 2018 12:55:48 -0700 Subject: Initial UI dashboard added for visibility - Add foundation, jquery and jquery-ui open source js/css packages for skin, layout and AJAX - Add plotly and candela js open source graphing packages - Build core visibility view and provide toplevel templates, headers, menu navigation, etc. - Update collector/visibility APIs to align to latest Spark analytics and UI requirements - Refresh page elements at 5 second interval. - Visibility controls to stop continual page refresh and clear visibility. - Multi-select and update service set to analyze. - System count updates for tracing, spans, metrics schemas. - Min/max/avg response times per service (aggregate) table. - Graphs for: per service request counts, user-agent percentages, per service/URL counts, per URL/status code counts, per URL counts - Tabs for distinct URLs, status codes, user-agents, upstream cluster, operation names, nodeids (service names) - Table for metrics counters specified in visibility configuration. - Metrics over time scatter plots for tracked metrics. Change-Id: Ie3ea12fd32e0274ac52f78becc4a56c4c4134660 Signed-off-by: earrage --- .../controller/control/templates/http_details.html | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 clover/controller/control/templates/http_details.html (limited to 'clover/controller/control/templates/http_details.html') diff --git a/clover/controller/control/templates/http_details.html b/clover/controller/control/templates/http_details.html new file mode 100644 index 0000000..79145b4 --- /dev/null +++ b/clover/controller/control/templates/http_details.html @@ -0,0 +1,30 @@ +

HTTP Details

+ +
+
+
+ {% for ua in user_agents %} + {{ ua }}
+ {% endfor %} +
+
+
+
+ {% for url in request_urls %} + {{ url }}
+ {% endfor %} +
+
+
+
+ {% for code in status_codes %} + {{ code }}
+ {% endfor %} +
+
+
+ -- cgit 1.2.3-korg