Imagine this: your online store's database is overloaded; every 5 minutes pages take 10 seconds to load, and during peak sales the site goes down. You check the server—CPU is free, memory has headroom, but queries are still slow. Without database performance monitoring, slow queries go undetected. We configure pg_stat_statements and the slow query log, connect Prometheus with Grafana, and you see precise metrics: cache hit rate, replication lag, the heaviest queries. In 2 days you get dashboards that show in real time which queries are slowing the system. This isn't a one-time check—it's continuous control.
We've encountered a case where one slow JOIN due to a missing index consumed 40% of database time. After setting up monitoring, the client found and fixed the issue within an hour. Operational cost savings reach 30%—equivalent to $15,000 annually for a medium-sized e-commerce store. We'll assess your project for free—reach out to us.
How pg_stat_statements Helps Identify Query Bottlenecks
The pg_stat_statements extension accumulates statistics for each unique query: execution time, number of calls, standard deviation. Configuration is minimal:
shared_preload_libraries = 'pg_stat_statements' pg_stat_statements.max = 10000 pg_stat_statements.track = all pg_stat_statements.track_utility = off After restart, create the extension and run queries to find problems:
-- Top by total time SELECT left(query, 120) AS query, calls, round(total_exec_time::numeric / 1000, 1) AS total_sec, round(mean_exec_time::numeric, 1) AS avg_ms, round(stddev_exec_time::numeric, 1) AS stddev_ms, round(rows::numeric / nullif(calls, 0), 0) AS rows_per_call FROM pg_stat_statements WHERE dbid = (SELECT oid FROM pg_database WHERE datname = current_database()) AND calls > 10 ORDER BY total_exec_time DESC LIMIT 20; -- Queries with high time variance SELECT left(query, 120) AS query, calls, round(mean_exec_time::numeric, 1) AS avg_ms, round(stddev_exec_time::numeric, 1) AS stddev_ms, round(stddev_exec_time / nullif(mean_exec_time, 0) * 100, 1) AS cv_pct FROM pg_stat_statements WHERE calls > 100 ORDER BY cv_pct DESC LIMIT 10; On one project, we found a query that averaged 2.3 seconds and accounted for 15% of total DB time. After adding an index, the time dropped to 15 ms—a 153x improvement. pg_stat_statements documentation confirms this is the fastest way to get an aggregated picture. Compared with the slow query log:
| Tool | What It Provides | Analysis Speed | Detail Depth |
|---|---|---|---|
| pg_stat_statements | Summary of all queries | Seconds | High (aggregates) |
| slow query log | Each slow query with plan | Minutes | Full |
Together, they help locate bottlenecks 3 times faster than manual log inspection.
Example: How we found a slow JOIN
In a production system, a join of two tables with 2 million rows took 4.5 seconds due to a missing index on the foreign key. pg_stat_statements showed a TTFB of 4.2 sec, and the slow query log gave the full plan. We added an index—time dropped to 12 ms. Without monitoring, finding it would have taken days.
Why the Slow Query Log Matters for MySQL
In MySQL, enable the slow query log with a 1-second threshold and logging queries without indexes:
slow_query_log = ON slow_query_log_file = /var/log/mysql/slow.log long_query_time = 1 log_queries_not_using_indexes = ON min_examined_row_limit = 1000 log_slow_rate_limit = 100 A typical case: a query without an index scanned 500,000 rows, taking 4.2 seconds. After analysis, we added a composite index, cutting time to 0.03 seconds—a 99.3% reduction. We analyze using Percona Toolkit:
pt-query-digest --since="1h ago" --limit 20 --output report /var/log/mysql/slow.log This gives count, avg/max time, and rows examined for each unique query.
Metric Monitoring: Prometheus + Grafana
For PostgreSQL, we use postgres_exporter; for MySQL, mysqld_exporter. Exporter configuration is standard and can be set up within an hour. Key metrics and alerts:
| Metric | Alert Threshold |
|---|---|
| Cache hit rate (PG) | < 99% |
| Active connections | > 80% of max_connections |
| Replication lag | > 30 seconds |
| Slow queries count/min | rising trend |
Example alerting rules:
groups: - name: postgresql rules: - alert: PostgreSQLSlowQueries expr: rate(pg_stat_statements_total_exec_time_seconds_total[5m]) > 10 for: 2m - alert: PostgreSQLHighConnections expr: pg_stat_activity_count > pg_settings_max_connections * 0.8 You can import ready-made Grafana dashboards (ID 9628 for PostgreSQL, 7362 for MySQL).
What's Included in Our DB Monitoring Setup
We deliver complete documentation: access configuration, deployment instructions, and runbook for alerts. After implementation, you get:
- Configured exporters for PostgreSQL and MySQL.
- Grafana dashboards with key metrics (cache hit rate, replication lag, top queries).
- Custom alerts sent to Telegram or Slack.
- Team training on interpreting metrics and responding to alerts.
- Daily pgBadger reports on slow queries.
This lets your team maintain database performance independently. The implementation cost is $2,500, and it pays for itself within 2 months by reducing downtime costs by an average of $10,000 per year. Get a consultation—we'll assess your project in 1 hour.
Stages of DB Monitoring Setup
- Analysis: Collect current metrics, identify bottlenecks via logs and statistics.
- Configuration: Set up
pg_stat_statementsandslow_query_logwith optimal parameters. - Deployment: Deploy Prometheus exporters (postgres_exporter, mysqld_exporter).
- Dashboards: Create custom Grafana dashboards for cache hit rate, replication lag, top queries.
- Alerts: Configure Alertmanager rules with notifications to Telegram/Slack.
- Integration: Set up pgBadger for daily reports and train your team.
- Documentation: Provide configuration docs and runbook for alert responses.
Common Mistakes in DB Monitoring Setup
- Not setting
pg_stat_statements.track_utility = off—cluttering statistics with internal queries. - Forgetting
log_line_prefixin MySQL—losing context in slow logs. - Using the same dashboard for all databases—ignoring replication and sharding specifics.
- Not adding burst handling in Alertmanager—getting spam from short spikes.
We fix these issues during implementation. Our engineers have 5+ years of experience in PostgreSQL and MySQL administration and are Prometheus certified. With over 10 performance optimization projects, we guarantee results. After implementing monitoring, clients save up to 40% of diagnosis time (approximately $8,000 in labor savings per year) and cut downtime by half. Order DB monitoring setup—we'll identify bottlenecks in 2 days.







