Skip to content

Commit

Permalink
docs: fix markup in changelog (#4023)
Browse files Browse the repository at this point in the history
This is asciidoc, not markdown.
  • Loading branch information
trentm committed May 14, 2024
1 parent 814bc3d commit 6fcefe1
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,29 @@ See the <<upgrade-to-v4>> guide.
- Change how the "cookie" HTTP request header is represented in APM transaction
data to avoid a rare, but possible, intake bug where the transaction could be
rejected due to a mapping conflict.
Before this change a `Cookie: foo=bar; sessionid=42` HTTP request header
would be represented in the transaction document in Elasticsearch with these
document fields (the example assumes <<sanitize-field-names>> matches
"sessionid", as it does by default):
```
http.request.headers.cookie: "[REDACTED]"
...
http.request.cookies.foo: "bar"
http.request.cookies.sessionid: "[REDACTED]"
```
After this change it is represented as:
```
http.request.headers.cookie: "foo=bar; sessionid=REDACTED"
```
In other words, `http.request.cookies` are no longer separated out.
({issues}4006[#4006])
+
Before this change a `Cookie: foo=bar; sessionid=42` HTTP request header
would be represented in the transaction document in Elasticsearch with these
document fields (the example assumes <<sanitize-field-names>> matches
"sessionid", as it does by default):
+
[source]
----
http.request.headers.cookie: "[REDACTED]"
...
http.request.cookies.foo: "bar"
http.request.cookies.sessionid: "[REDACTED]"
----
+
After this change it is represented as:
+
[source]
----
http.request.headers.cookie: "foo=bar; sessionid=REDACTED"
----
+
In other words, `http.request.cookies` are no longer separated out.
({issues}4006[#4006])
[[release-notes-4.5.3]]
Expand Down

0 comments on commit 6fcefe1

Please sign in to comment.