diff --git a/content/en/agent/logs/auto_multiline_detection.md b/content/en/agent/logs/auto_multiline_detection.md
index 4d5e614cf6f..7cb92c175bb 100644
--- a/content/en/agent/logs/auto_multiline_detection.md
+++ b/content/en/agent/logs/auto_multiline_detection.md
@@ -12,7 +12,7 @@ algolia:
tags: ['advanced log filter']
---
-
+This feature is available for Agent version
7.65.0+ and above. For older Agent versions or to explicitly enable the legacy implementation, see
Auto Multi-line Detection and Aggregation (Legacy). For Agent versions older than
7.82.x, Auto multi-line Detection is disabled by default.
## Overview
@@ -20,18 +20,18 @@ Automatic multi-line detection allows the Agent to detect and aggregate common m
## Getting started
-To enable the Auto multi-line feature in your Agent configuration, set `auto_multi_line_detection` to `true` in your configuration file, or set the `DD_LOGS_CONFIG_AUTO_MULTI_LINE_DETECTION=true` environment variable:
+Auto multi-line detection is enabled by default. To disable the Auto multi-line feature in your Agent configuration, set `auto_multi_line_detection` to `false` in your configuration file, or set the `DD_LOGS_CONFIG_AUTO_MULTI_LINE_DETECTION=false` environment variable:
{{< tabs >}}
{{% tab "Configuration file" %}}
```yaml
logs_config:
- auto_multi_line_detection: true
+ auto_multi_line_detection: false
```
{{% /tab %}}
{{% tab "Environment Variable" %}}
```shell
-DD_LOGS_CONFIG_AUTO_MULTI_LINE_DETECTION=true
+DD_LOGS_CONFIG_AUTO_MULTI_LINE_DETECTION=false
```
{{% /tab %}}
{{< /tabs >}}