Skip to content

Commit 108dc41

Browse files
authored
Updates nav titles and fixes pull and issue links (#827)
1 parent 2ec244b commit 108dc41

22 files changed

+467
-500
lines changed

docset.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,9 @@ subs:
396396
fleet-server-pull: "https://github.com/elastic/fleet-server/pull/"
397397
kib-repo: "https://github.com/elastic/kibana/"
398398
kib-issue: "https://github.com/elastic/kibana/issues/"
399-
kibana-issue: "'{kib-repo}issues/'"
399+
kibana-issue: "'{{kib-repo}}issues/'"
400400
kib-pull: "https://github.com/elastic/kibana/pull/"
401-
kibana-pull: "'{kib-repo}pull/'"
401+
kibana-pull: "'{{kib-repo}}pull/'"
402402
kib-commit: "https://github.com/elastic/kibana/commit/"
403403
ml-repo: "https://github.com/elastic/ml-cpp/"
404404
ml-issue: "https://github.com/elastic/ml-cpp/issues/"
@@ -416,4 +416,5 @@ subs:
416416
stack-version: "9.0.0"
417417
eck_version: "3.0.0"
418418
apm_server_version: "9.0.0"
419-
version: "9.0.0"
419+
version: "9.0.0"
420+
release-date: "2-April-2025"

release-notes/elastic-apm/breaking-changes.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
2-
navigation_title: "Elastic APM"
2+
navigation_title: "Breaking changes"
33
---
44

55
# Elastic APM breaking changes [elastic-apm-breaking-changes]
6-
Breaking changes can impact your Elastic applications, potentially disrupting normal operations. Before you upgrade, carefully review the Elastic APM breaking changes and take the necessary steps to mitigate any issues.
7-
8-
To learn how to upgrade, check [Upgrade](/deploy-manage/upgrade.md).
6+
Breaking changes can impact your Elastic applications, potentially disrupting normal operations. Before you upgrade, carefully review the Elastic APM breaking changes and take the necessary steps to mitigate any issues. To learn how to upgrade, check [Upgrade](/deploy-manage/upgrade.md).
97

108
% ## Next version [elastic-apm-nextversion-breaking-changes]
119
% **Release date:** Month day, year
1210

1311
% ::::{dropdown} Title of breaking change
1412
% Description of the breaking change.
1513
% For more information, check [PR #](PR link).
14+
1615
% **Impact**<br> Impact of the breaking change.
16+
1717
% **Action**<br> Steps for mitigating deprecation impact.
1818
% ::::
1919

@@ -29,7 +29,9 @@ To learn how to upgrade, check [Upgrade](/deploy-manage/upgrade.md).
2929

3030
::::{dropdown} Change server information endpoint "/" to only accept GET and HEAD requests
3131
This will surface any agent misconfiguration causing data to be sent to `/` instead of the correct endpoint (for example, `/v1/traces` for OTLP/HTTP).
32-
For more information, check [PR #15976](https://github.com/elastic/apm-server/pull/15976).
32+
For more information, check [#15976]({{apm-pull}}15976).
33+
3334
**Impact**<br> Any methods other than `GET` and `HEAD` to `/` will return HTTP 405 Method Not Allowed.
35+
3436
**Action**<br> Update any existing usage, for example, update `POST /` to `GET /`.
3537
::::

release-notes/elastic-apm/deprecations.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
2-
navigation_title: "Elastic APM"
2+
navigation_title: "Deprecations"
33
---
44

55
# Elastic APM deprecations [elastic-apm-deprecations]
66
Over time, certain Elastic functionality becomes outdated and is replaced or removed. To help with the transition, Elastic deprecates functionality for a period before removal, giving you time to update your applications.
77

8-
Review the deprecated functionality for Elastic APM. While deprecations have no immediate impact, we strongly encourage you update your implementation after you upgrade.
9-
10-
To learn how to upgrade, check out [Upgrade](/deploy-manage/upgrade.md).
8+
Review the deprecated functionality for Elastic APM. While deprecations have no immediate impact, we strongly encourage you update your implementation after you upgrade. To learn how to upgrade, check out [Upgrade](/deploy-manage/upgrade.md).
119

1210
% ## Next version
1311
% **Release date:** Month day, year

release-notes/elastic-apm/known-issues.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mapped_pages:
33
- https://www.elastic.co/guide/en/observability/current/apm-known-issues.html
44

5-
navigation_title: "Elastic APM"
5+
navigation_title: "Known issues"
66
---
77

88
# Elastic APM known issues [elastic-apm-known-issues]
@@ -124,7 +124,7 @@ There are three ways to fix this error:
124124

125125
1. Find broken rules
126126

127-
:::::{admonition}
127+
:::::{note}
128128
To identify rules in this exact state, you can use the [find rules endpoint](https://www.elastic.co/docs/api/doc/kibana/v8/group/endpoint-alerting) and search for the APM anomaly rule type as well as this exact error message indicating that the rule is in the broken state. We will also use the `fields` parameter to specify only the fields required when making the update request later.
129129

130130
* `search_fields=alertTypeId`
@@ -176,7 +176,7 @@ There are three ways to fix this error:
176176

177177
2. Prepare the update JSON doc(s)
178178

179-
::::{admonition}
179+
::::{note}
180180
For each broken rule found, create a JSON rule document with what was returned from the API in the previous step. You will need to make two changes to each document:
181181

182182
1. Remove the `id` key but keep the value connected to this document (e.g. rename the file to `{{id}}.json`). **The `id` cannot be sent as part of the request body for the PUT request, but you will need it for the URL path.**
@@ -201,7 +201,7 @@ There are three ways to fix this error:
201201

202202
3. Update each rule using the `PUT /api/alerting/rule/{{id}}` API
203203

204-
::::{admonition}
204+
::::{note}
205205
For each rule, submit a PUT request to the [update rule endpoint](https://www.elastic.co/docs/api/doc/kibana/v8/group/endpoint-alerting) using that rule’s ID and its stored update document from the previous step. For example, assuming the first broken rule’s ID is `046c0d4f`:
206206

207207
```shell

release-notes/elastic-apm/release-notes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ To check for security updates, go to [Security announcements for the Elastic sta
2121
% ### Fixes [elastic-apm-next-fixes]
2222

2323
## 9.0.0 [elastic-apm-900-release-notes]
24-
**Release date:** April 1, 2025
24+
**Release date:** April 2, 2025
2525

26-
### Features and enhancements [elastic-apm-900-features-enhancements]
26+
% ### Features and enhancements [elastic-apm-900-features-enhancements]
2727

2828
### Fixes [elastic-apm-900-fixes]
29-
* Fix overflow in validation of `apm-server.agent.config.cache.expiration` on 32-bit architectures [#15216](https://github.com/elastic/apm-server/pull/15216)
29+
* Fixes overflow in validation of `apm-server.agent.config.cache.expiration` on 32-bit architectures [#15216]({{apm-pull}}15216)

0 commit comments

Comments
 (0)