diff --git a/docs/platforms/native/common/configuration/options.mdx b/docs/platforms/native/common/configuration/options.mdx
index 977f70c63b0ca8..79b39a0d234e43 100644
--- a/docs/platforms/native/common/configuration/options.mdx
+++ b/docs/platforms/native/common/configuration/options.mdx
@@ -140,12 +140,6 @@ A function responsible for determining the percentage chance a given transaction
## Logs options
-
-
-This option enables the [logging integration](/platforms/native/logs), which allows the SDK to capture logs and send them to Sentry.
-
-
-
This function is called with an SDK-specific log object, and can return a modified log object, or `sentry_value_new_null()` to drop the log. In that case, you **must** call `sentry_value_decref(log)` before returning.
@@ -160,14 +154,6 @@ Whether calls to `sentry_log_X()` expect an attributes object as the second argu
## Metrics Options
-
-
-This option enables [Application Metrics](/platforms/native/metrics). When disabled, all calls to `sentry_metrics_*()` are no-ops.
-
-Metrics have been enabled by default since `0.13.5`. In earlier versions they were experimental and had to be turned on explicitly.
-
-
-
This function is called with an SDK-specific metric object, and can return a modified metric object, or `sentry_value_new_null()` to drop the metric. In that case, you **must** call `sentry_value_decref(metric)` before returning. An example can be found on the [Metrics page](/platforms/native/metrics/#before_send_metric).
diff --git a/docs/platforms/native/logs/index.mdx b/docs/platforms/native/logs/index.mdx
index e6232fd6a5d511..ca4e04d98ca3af 100644
--- a/docs/platforms/native/logs/index.mdx
+++ b/docs/platforms/native/logs/index.mdx
@@ -12,9 +12,6 @@ With Sentry Structured Logs, you can send text-based log information from your a
-## Setup
-
-
## Usage
diff --git a/platform-includes/logs/setup/native.mdx b/platform-includes/logs/setup/native.mdx
deleted file mode 100644
index f8c7994af0b50d..00000000000000
--- a/platform-includes/logs/setup/native.mdx
+++ /dev/null
@@ -1,8 +0,0 @@
-Logs are enabled by default. To disable logs, set the `enable_logs` option to `false` during SDK initialization:
-
-```c
-sentry_options_t *options = sentry_options_new();
-sentry_options_set_enable_logs(options, 0);
-// set other options
-sentry_init(options);
-```
diff --git a/platform-includes/metrics/usage/native.mdx b/platform-includes/metrics/usage/native.mdx
index f197e429711c00..d98a27a6e7854b 100644
--- a/platform-includes/metrics/usage/native.mdx
+++ b/platform-includes/metrics/usage/native.mdx
@@ -1,12 +1,3 @@
-Metrics are enabled by default. To disable metrics, set the `enable_metrics` option to `false` during SDK initialization:
-
-```c
-sentry_options_t *options = sentry_options_new();
-sentry_options_set_enable_metrics(options, false);
-// set other options
-sentry_init(options);
-```
-
You can send metrics using the `sentry_metrics_*()` APIs.
### Metric Types