diff --git a/content/en/database_monitoring/setup_postgres/azure.md b/content/en/database_monitoring/setup_postgres/azure.md index fe85eef4be9..8ff89f68d29 100644 --- a/content/en/database_monitoring/setup_postgres/azure.md +++ b/content/en/database_monitoring/setup_postgres/azure.md @@ -62,7 +62,7 @@ Configure the following [parameters][3] in the [Server parameters][4], then **re |----------------------| -- | --- | | `azure.extensions` | `pg_stat_statements` | Required for `postgresql.queries.*` metrics. Enables collection of query metrics using the [pg_stat_statements][1] extension. | | `track_activity_query_size` | `4096` | Required for collection of larger queries. Increases the size of SQL text in `pg_stat_activity`. If left at the default value, queries longer than `1024` characters are not collected. | -| `pg_stat_statements.track` | `ALL` | Optional. Enables tracking of statements within stored procedures and functions. | +| `pg_stat_statements.track` | `ALL` | Required for Database Monitoring to collect query metrics on Flexible Server. Enables tracking of statements within stored procedures and functions. | | `pg_stat_statements.max` | `10000` | Optional. Increases the number of normalized queries tracked in `pg_stat_statements`. This setting is recommended for high-volume databases that see many different types of queries from many different clients. | | `pg_stat_statements.track_utility` | `off` | Optional. Disables utility commands like PREPARE and EXPLAIN. Setting this value to `off` means only queries like SELECT, UPDATE, and DELETE are tracked. | | `track_io_timing` | `on` | Optional. Enables collection of block read and write times for queries. |