Skip to content

Commit

Permalink
Remove query cache hits column and update invocations title
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleywiser authored Dec 9, 2019
1 parent 9249fb0 commit 47c576b
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions site/static/detailed-query.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ <h3 id="title"></h3>
<th data-sort-idx="2" data-default-sort-dir="-1">Time</th>
<th data-sort-idx="10" data-default-sort-dir="-1">% Total Time</th>
<th class="delta">Δ</th>
<th data-sort-idx="5" data-default-sort-dir="-1">Invocations</th>
<th class="delta">Δ</th>
<th data-sort-idx="3" data-default-sort-dir="-1">Cache Misses</th>
<th data-sort-idx="5" data-default-sort-dir="-1">Full Executions</th>
<th class="delta">Δ</th>
<th data-sort-idx="7" data-default-sort-dir="-1" title="Incremental loading time">Loading</th>
<th class="delta">Δ</th>
Expand Down Expand Up @@ -191,12 +189,6 @@ <h3 id="title"></h3>
} else {
td(row, "-", true);
}
td(row, cur.cache_misses);
if (prev) {
td(row, fmt_delta(prev.cache_misses, cur.cache_misses), true);
} else {
td(row, "-", true);
}
td(row, to_seconds(cur.incremental_load_time).toFixed(3));
if (prev) {
td(row,
Expand Down Expand Up @@ -228,15 +220,14 @@ <h3 id="title"></h3>
];
}
let [
label, self_time, percent_total_time, cache_misses,
label, self_time, percent_total_time, _cache_misses,
_cache_hits, invocation_count, _blocked_time,
incremental_load_time
] = element;
return {
label,
self_time,
percent_total_time,
cache_misses,
invocation_count,
incremental_load_time,
};
Expand Down

0 comments on commit 47c576b

Please sign in to comment.