Skip to content

Commit

Permalink
Move run_id, batch_id, run_name, timestamp out of stats object
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Jul 14, 2021
1 parent 5394461 commit c55e2b4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions conbench/templates/benchmark-entity.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@
</div>
</li>
<li class="list-group-item active">Result</li>
<li class="list-group-item" style="overflow-y: auto;">
<b>timestamp</b>
<div align="right" style="display:inline-block; float: right;">
{{ benchmark.display_timestamp }}
</div>
</li>
{% for k,v in benchmark.stats.items() %}
<li class="list-group-item" style="overflow-y: auto;">
<b>{{ k }}</b>
Expand Down
12 changes: 12 additions & 0 deletions conbench/templates/compare-entity.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@
</li>
{% endif %}
<li class="list-group-item active">Result</li>
<li class="list-group-item" style="overflow-y: auto;">
<b>timestamp</b>
<div align="right" style="display:inline-block; float: right;">
{{ baseline.display_timestamp }}
</div>
</li>
{% for k,v in baseline.stats.items() %}
<li class="list-group-item" style="overflow-y: auto;">
<b>{{ k }}</b>
Expand Down Expand Up @@ -222,6 +228,12 @@
</li>
{% endif %}
<li class="list-group-item active">Result</li>
<li class="list-group-item" style="overflow-y: auto;">
<b>timestamp</b>
<div align="right" style="display:inline-block; float: right;">
{{ contender.display_timestamp }}
</div>
</li>
{% for k,v in contender.stats.items() %}
<li class="list-group-item" style="overflow-y: auto;">
<b>{{ k }}</b>
Expand Down

0 comments on commit c55e2b4

Please sign in to comment.