diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-03-07 15:57:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-07 15:57:38 +0000 |
commit | e1422b208fbd0455d56da0a50e6cdacf734dab96 (patch) | |
tree | d28352a6e5bb6b60beea76e756416f83c39ad45b /utils/test/reporting/storperf/template | |
parent | 11c6ad98254241984fc2d44e5ea879701138f9b7 (diff) | |
parent | a2a28ef2f3532ac26de88b746305d26f900b16fc (diff) |
Merge "bug fix: last 4 run reporting for storperf"
Diffstat (limited to 'utils/test/reporting/storperf/template')
-rw-r--r-- | utils/test/reporting/storperf/template/index-status-tmpl.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/test/reporting/storperf/template/index-status-tmpl.html b/utils/test/reporting/storperf/template/index-status-tmpl.html index e3a18b1ce..e0fcc6828 100644 --- a/utils/test/reporting/storperf/template/index-status-tmpl.html +++ b/utils/test/reporting/storperf/template/index-status-tmpl.html @@ -25,7 +25,7 @@ } // trend line management - d3.csv("./scenario_history.csv", function(data) { + d3.csv("./scenario_history.txt", function(data) { // *************************************** // Create the trend line {% for scenario in scenario_results.keys() -%} @@ -95,7 +95,7 @@ </tr> {% for scenario,result in scenario_results.iteritems() -%} <tr class="tr-ok"> - <td>{{scenario}}</td> + <td><a href="{{scenario_results[scenario].getLastUrl()}}">{{scenario}}</a></td> <td><div id="gaugeScenario{{loop.index}}"></div></td> <td><div id="trend_svg{{loop.index}}"></div></td> <td>{{scenario_results[scenario].getFourDaysScore()}}</td> |