Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion release-notes/elastic-observability/known-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,30 @@ For more information, check:
- [#220339](https://github.com/elastic/kibana/issues/220339)
- [#220342](https://github.com/elastic/kibana/issues/220342)

::::
::::

::::{dropdown} Profiling Collector and Symbolizer endpoints are not configured after upgrading a cluster

Applies to: {{stack}} 9.x, 8.x

**Details**

After upgrading a cluster, it may happen that Collector and Symbolizer endpoints are not configured, even though Universal Profiling has been set up in Kibana and the "Add data" instructions are shown on the Universal Profiling landing page.

**Workaround**

1. Run the following query and retrieve the `id` of the `elastic-universal-profiling-collector` and `elastic-universal-profiling-symbolizer` package policy

```sh
GET kbn:/api/fleet/package_policies
```

2. Execute the deletion.

```sh
DELETE kbn:/api/fleet/package_policies/<elastic-universal-profiling-collector-id>?force=true
DELETE kbn:/api/fleet/package_policies/<elastic-universal-profiling-symbolizer-id>?force=true
```


::::
Loading