From b25cd5a9defea20a281b14de4d4b15f56da38bdc Mon Sep 17 00:00:00 2001 From: Matthias Wirtz Date: Sun, 20 Oct 2024 12:37:22 +0200 Subject: [PATCH] format prettier --- website/docs/development.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/docs/development.md b/website/docs/development.md index 0266e896e8..704b7d2ba6 100644 --- a/website/docs/development.md +++ b/website/docs/development.md @@ -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 @@ -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 \ No newline at end of file +Additional details about pg_stat_statements can be found here: https://www.postgresql.org/docs/current/pgstatstatements.html