From 45bc60f5e3a4540313d837dd0dbe0a8517956a17 Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Thu, 27 Nov 2025 17:10:20 +0200 Subject: [PATCH] Fix markdown lint failures --- .markdownlint.yaml | 1 + instrumentation/logback/logback-appender-1.0/library/README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.markdownlint.yaml b/.markdownlint.yaml index fcc8d4d0a558..5bce49409f49 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -11,3 +11,4 @@ no-inline-html: false fenced-code-language: false no-trailing-punctuation: punctuation: ".,;:" # allowing exclamation points and question marks at end of sentences +MD059: false # disable link text should be descriptive check diff --git a/instrumentation/logback/logback-appender-1.0/library/README.md b/instrumentation/logback/logback-appender-1.0/library/README.md index 33206464e2dc..57c50e79072c 100644 --- a/instrumentation/logback/logback-appender-1.0/library/README.md +++ b/instrumentation/logback/logback-appender-1.0/library/README.md @@ -102,7 +102,7 @@ The available settings are: | `captureLoggerContext` | Boolean | `false` | Enable the capture of Logback logger context properties as attributes. | | `captureArguments` | Boolean | `false` | Enable the capture of Logback logger arguments. | | `captureLogstashMarkerAttributes` | Boolean | `false` | Enable the capture of Logstash markers, supported are those added to logs via `Markers.append()`, `Markers.appendEntries()`, `Markers.appendArray()` and `Markers.appendRaw()` methods. | -| `captureLogstashStructuredArguments` | Boolean | `false` | Enable the capture of Logstash StructuredArguments as attributes (e.g., `StructuredArguments.v()` and `StructuredArguments.keyValue()`). | +| `captureLogstashStructuredArguments` | Boolean | `false` | Enable the capture of Logstash StructuredArguments as attributes (e.g., `StructuredArguments.v()` and `StructuredArguments.keyValue()`). | | `captureMdcAttributes` | String | | Comma separated list of MDC attributes to capture. Use the wildcard character `*` to capture all attributes. | | `captureEventName` | Boolean | `false` | Enable moving the `event.name` attribute (captured by one of the other mechanisms of capturing attributes) to the log event name. | | `numLogsCapturedBeforeOtelInstall` | Integer | 1000 | Log telemetry is emitted after the initialization of the OpenTelemetry Logback appender with an OpenTelemetry object. This setting allows you to modify the size of the cache used to replay the first logs. thread.id attribute is not captured. |