Skip to content

Commit f0c5a8b

Browse files
feat(profiling): document how to work around broken fleet policies (#2539)
add known issue about broken profiling endpoint on cluster upgrade provide workaround steps on how to delete the broken policies Closes #1860 --------- Co-authored-by: Benjamin Ironside Goldstein <[email protected]>
1 parent 95b7d82 commit f0c5a8b

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

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

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,30 @@ For more information, check:
102102
- [#220339](https://github.com/elastic/kibana/issues/220339)
103103
- [#220342](https://github.com/elastic/kibana/issues/220342)
104104
105-
::::
105+
::::
106+
107+
::::{dropdown} Profiling Collector and Symbolizer endpoints are not configured after upgrading a cluster
108+
109+
Applies to: {{stack}} 9.x, 8.x
110+
111+
**Details**
112+
113+
After upgrading a cluster, Collector and Symbolizer endpoints may not be configured even when Universal Profiling is enabled in Kibana and the "Add data" instructions appear on the Universal Profiling landing page.
114+
115+
**Workaround**
116+
117+
1. Run the following query to retrieve the `id`s of the `elastic-universal-profiling-collector` and `elastic-universal-profiling-symbolizer` package policies:
118+
119+
```sh
120+
GET kbn:/api/fleet/package_policies
121+
```
122+
123+
2. Delete the package policies:
124+
125+
```sh
126+
DELETE kbn:/api/fleet/package_policies/<elastic-universal-profiling-collector-id>?force=true
127+
DELETE kbn:/api/fleet/package_policies/<elastic-universal-profiling-symbolizer-id>?force=true
128+
```
129+
130+
131+
::::

0 commit comments

Comments
 (0)