Skip to content

Commit

Permalink
format prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
swiffer committed Oct 20, 2024
1 parent f9df5a2 commit b25cd5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ When Streaming API is enabled roughly 1 GB of data is gathered per car and 30.00
Before opening pull requests please diagnose index usage & query performance by making use of `EXPLAIN ANALYZE`.

### Enable _pg_stat_statements_ to collect query statistics

To quickly identify performance bottlenecks we encourage all contributors to enable the pg_stat_statements extension in their instance. For docker based installs you can follow these steps:

- Enable the pg_stat_statements module
Expand Down Expand Up @@ -196,4 +197,4 @@ To quickly identify performance bottlenecks we encourage all contributors to ena
SELECT query, calls, mean_exec_time, total_exec_time FROM pg_stat_statements ORDER BY calls DESC LIMIT 10;
```
Additional details about pg_stat_statements can be found here: https://www.postgresql.org/docs/current/pgstatstatements.html
Additional details about pg_stat_statements can be found here: https://www.postgresql.org/docs/current/pgstatstatements.html

0 comments on commit b25cd5a

Please sign in to comment.