diff --git a/deploy-board/deploy_board/templates/groups/group_details.html b/deploy-board/deploy_board/templates/groups/group_details.html index 9c9c6646b6..6900bbe824 100644 --- a/deploy-board/deploy_board/templates/groups/group_details.html +++ b/deploy-board/deploy_board/templates/groups/group_details.html @@ -86,29 +86,8 @@

-
-
-
-
- {% include "groups/latency_stats.tmpl" %} - {% include "groups/launch_rate.tmpl" %} - - {% if pas_enabled == 'ENABLED' %} -
- {% include "groups/pas_stats.tmpl" %} - {% endif %} - - -
-
-
+

Updated: check out these links for better visualization

@@ -132,6 +111,28 @@

{% endfor %}

+
+
+
+
+ {% include "groups/latency_stats.tmpl" %} + {% include "groups/launch_rate.tmpl" %} + + {% if pas_enabled == 'ENABLED' %} +
+ {% include "groups/pas_stats.tmpl" %} + {% endif %} + + +
+
+
diff --git a/deploy-board/deploy_board/templates/groups/launch_rate.tmpl b/deploy-board/deploy_board/templates/groups/launch_rate.tmpl index 1c34b4328d..d5480490be 100644 --- a/deploy-board/deploy_board/templates/groups/launch_rate.tmpl +++ b/deploy-board/deploy_board/templates/groups/launch_rate.tmpl @@ -10,11 +10,11 @@ var data = new google.visualization.DataTable(); data.addColumn("datetime", "Date"); - var failure_count_name = "Launch Failure Count"; + var failure_count_name = "Launch Failure Rate"; data.addColumn("number", failure_count_name); var options = { - title: 'Launch Failure Count', + title: 'Launch Failure Rate', titleFontSize: 15, height: 300, min: 0, @@ -65,7 +65,7 @@ if (metric_names != null) { for (var i = 0; i < 1; ++i) { var metric_name = metric_names[i]; - data.addColumn("number", "Launch Failure Count"); + data.addColumn("number", "Launch Failure Rate"); data_list = response[metric_name]; for (j = 0; j < data_list.length; ++j) { var d = new Date(data_list[j][0]);