{{ query.calls }}
{{ "%.2f"|format(query.total_time) }} ms
{{ "%.2f"|format(query.mean_time) }} ms
{{ query.rows }}
{{ query.query }}
| Shared blocks hit: | {{ query.shared_blks_hit }} |
|---|---|
| Shared blocks read: | {{ query.shared_blks_read }} |
| Temp blocks written: | {{ query.temp_blks_written }} |
| I/O Time: | {{ "%.2f"|format(query.io_time) }} ms |
| I/O Percentage: | {{ "%.2f"|format(query.io_percentage) }}% |
| Time per row: | {{ "%.4f"|format(query.time_per_row) }} ms |
|---|---|
| Rows per second: | {{ "%.2f"|format(1000 / query.time_per_row) if query.time_per_row > 0 else "N/A" }} |
| Total execution cost: | {{ "%.2f"|format(query.total_time) }} ms ({{ "%.2f"|format(query.total_time / 1000) }} seconds) |
| Cache hit ratio: | {% set total_blocks = query.shared_blks_hit + query.shared_blks_read %} {% if total_blocks > 0 %} {{ "%.2f"|format((query.shared_blks_hit / total_blocks) * 100) }}% {% else %} N/A {% endif %} |