{% extends "base.html" %} {% load static %} {% block title %}Database Performance Monitoring{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Monitor database performance, query optimization, and system health
Cache Hits
Optimized Queries
DB Cache Hit Ratio
Active Connections
| Query | Calls | Mean Time (ms) | Total Time (ms) | Rows |
|---|---|---|---|---|
{{ query.query }} |
{{ query.calls }} | {{ query.mean_time }} | {{ query.total_time }} | {{ query.rows }} |
| Table | Live Tuples | Dead Tuples | Updates |
|---|---|---|---|
| {{ stat.table }} | {{ stat.live_tuples|default:0 }} | {{ stat.dead_tuples|default:0 }} | {{ stat.updates|default:0 }} |
| Index | Table | Reads | Fetches |
|---|---|---|---|
| {{ idx.index|truncatechars:20 }} | {{ idx.table }} | {{ idx.tuples_read|default:0 }} | {{ idx.tuples_fetched|default:0 }} |
{{ rec.description }}
{% if rec.details %}{{ rec.details|pprint }}
Last updated: {{ last_updated|date:"Y-m-d H:i:s" }}