diff --git a/pages/database-management/configuration.mdx b/pages/database-management/configuration.mdx
index d1e4182bf..e24ffb5bc 100644
--- a/pages/database-management/configuration.mdx
+++ b/pages/database-management/configuration.mdx
@@ -578,7 +578,7 @@ This section contains the list of all other relevant flags used within Memgraph.
| `--log-retention-days=35` | Controls for how many days daily log files will be preserved. Allowed values: 1–1000000. | `[uint64]` |
| `--memory-limit=0` | Total memory limit in MiB. Set to 0 to use the default values which are 100% of the physical memory if the swap is enabled and 90% of the physical memory otherwise. | `[uint64]` |
| `--metrics-address="0.0.0.0"` | Host for HTTP server for exposing metrics. | `[string]` |
-| `--metrics-format=JSON` | Format of the metrics HTTP endpoint. Allowed values: `OpenMetrics`, `JSON`. The `JSON` format is deprecated; use `OpenMetrics` for new deployments. See [monitoring](/database-management/monitoring#metrics-tracking-via-http-server-enterprise-edition) for details. | `[string]` |
+| `--metrics-format=OpenMetrics` | Format of the metrics HTTP endpoint. Allowed values: `OpenMetrics`, `JSON`. The `JSON` format is deprecated and will be removed in a future release. See [monitoring](/database-management/monitoring#metrics-tracking-via-http-server-enterprise-edition) for details. | `[string]` |
| `--metrics-port=9091` | Port for HTTP server for exposing metrics. | `[int32]` |
| `--memory-warning-threshold=1024` | Memory warning threshold, in MB. If Memgraph detects there is less available RAM it will log a warning.
Set to 0 to disable. | `[uint64]` |
| `--monitoring-address="0.0.0.0"` | IP address where the Memgraph's monitoring WebSocket server should listen. | `[string]` |
diff --git a/pages/database-management/monitoring.mdx b/pages/database-management/monitoring.mdx
index e967f5d25..077049f9d 100644
--- a/pages/database-management/monitoring.mdx
+++ b/pages/database-management/monitoring.mdx
@@ -209,16 +209,22 @@ The `--metrics-format` [configuration
flag](/database-management/configuration#list-of-configuration-flags) controls
the response format of the HTTP endpoint. The allowed values are:
-- **`OpenMetrics`**: Prometheus-compatible
+- **`OpenMetrics`** (default): Prometheus-compatible
[OpenMetrics](https://openmetrics.io/) text format
(`application/openmetrics-text`). Metrics are labeled per-database. Any
OpenMetrics compatible clients can connect directly to Memgraph to scrape metrics.
-- **`JSON`** (default): A flat JSON object. The `JSON` format is deprecated.
+- **`JSON`**: A flat JSON object. The `JSON` format is deprecated.
Using JSON with any OpenMetrics compatible client requires the [Prometheus
exporter](https://github.com/memgraph/prometheus-exporter) middleware.
-New deployments should use `OpenMetrics`, which enables direct Prometheus
-scraping and provides per-database metric labels.
+