Skip to content

Commit ad4bde6

Browse files
[8.18 changelog] add known issue for restart_on_cert_change panic (#46406)
* changelog: add known issue for restart_on_cert_change panic * fix version * update link, use tagged region --------- Co-authored-by: Colleen McGinnis <[email protected]>
1 parent 2cd8b2c commit ad4bde6

File tree

1 file changed

+165
-0
lines changed

1 file changed

+165
-0
lines changed

CHANGELOG.asciidoc

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,147 @@
77
=== Beats version 8.18.6
88
https://github.com/elastic/beats/compare/v8.18.5\...v8.18.6[View commits]
99

10+
==== Known issues
11+
12+
// tag::known-issue-8.18-restart_on_cert_change[]
13+
- `restart_on_cert_change` causes panic due to seccomp policy. In versions 8.18.0 and later, enabling this option causes the Beat to panic on restart. This is due to the `eventfd2` syscall missing from the default seccomp policy. To fix this, add `eventfd2` to a custom seccomp policy. To fix this, add `eventfd2` to a custom seccomp policy. For more details, refer to {filebeat-ref}/linux-seccomp.html[Use Linux Secure Computing Mode (seccomp)].
14+
15+
[%collapsible]
16+
.Click to view the policy
17+
====
18+
[source,yaml]
19+
----
20+
seccomp:
21+
syscalls:
22+
- action: allow
23+
names:
24+
- accept
25+
- accept4
26+
- access
27+
- arch_prctl
28+
- bind
29+
- brk
30+
- capget
31+
- chmod
32+
- chown
33+
- clock_gettime
34+
- clock_nanosleep
35+
- clone
36+
- clone3
37+
- close
38+
- connect
39+
- dup
40+
- dup2
41+
- dup3
42+
- epoll_create
43+
- epoll_create1
44+
- epoll_ctl
45+
- epoll_pwait
46+
- epoll_wait
47+
- eventfd2
48+
- execve
49+
- exit
50+
- exit_group
51+
- faccessat
52+
- faccessat2
53+
- fchdir
54+
- fchmod
55+
- fchmodat
56+
- fchown
57+
- fchownat
58+
- fcntl
59+
- fdatasync
60+
- flock
61+
- fstat
62+
- fstatfs
63+
- fsync
64+
- ftruncate
65+
- futex
66+
- getcwd
67+
- getdents
68+
- getdents64
69+
- geteuid
70+
- getgid
71+
- getpeername
72+
- getpid
73+
- getppid
74+
- getrandom
75+
- getrlimit
76+
- getrusage
77+
- getsockname
78+
- getsockopt
79+
- gettid
80+
- gettimeofday
81+
- getuid
82+
- inotify_add_watch
83+
- inotify_init1
84+
- inotify_rm_watch
85+
- ioctl
86+
- kill
87+
- listen
88+
- lseek
89+
- lstat
90+
- madvise
91+
- mincore
92+
- mkdirat
93+
- mmap
94+
- mprotect
95+
- munmap
96+
- nanosleep
97+
- newfstatat
98+
- open
99+
- openat
100+
- pipe
101+
- pipe2
102+
- poll
103+
- ppoll
104+
- prctl
105+
- pread64
106+
- pselect6
107+
- pwrite64
108+
- read
109+
- readlink
110+
- readlinkat
111+
- recvfrom
112+
- recvmmsg
113+
- recvmsg
114+
- rename
115+
- renameat
116+
- rseq
117+
- rt_sigaction
118+
- rt_sigprocmask
119+
- rt_sigreturn
120+
- sched_getaffinity
121+
- sched_yield
122+
- sendfile
123+
- sendmmsg
124+
- sendmsg
125+
- sendto
126+
- set_robust_list
127+
- setitimer
128+
- setrlimit
129+
- setsockopt
130+
- shutdown
131+
- sigaltstack
132+
- socket
133+
- splice
134+
- stat
135+
- statfs
136+
- sysinfo
137+
- tgkill
138+
- time
139+
- tkill
140+
- uname
141+
- unlink
142+
- unlinkat
143+
- wait4
144+
- waitid
145+
- write
146+
- writev
147+
----
148+
====
149+
// end::known-issue-8.18-restart_on_cert_change[]
150+
10151
==== Breaking changes
11152

12153
*Affecting all Beats*
@@ -47,6 +188,10 @@ https://github.com/elastic/beats/compare/v8.18.5\...v8.18.6[View commits]
47188
=== Beats version 8.18.5
48189
https://github.com/elastic/beats/compare/v8.18.4\...v8.18.5[View commits]
49190

191+
==== Known issues
192+
193+
include::CHANGELOG.asciidoc[tags=known-issue-8.18-restart_on_cert_change]
194+
50195
==== Bugfixes
51196

52197
*Auditbeat*
@@ -71,6 +216,10 @@ https://github.com/elastic/beats/compare/v8.18.4\...v8.18.5[View commits]
71216
=== Beats version 8.18.4
72217
https://github.com/elastic/beats/compare/v8.18.3\...v8.18.4[View commits]
73218

219+
==== Known issues
220+
221+
include::CHANGELOG.asciidoc[tags=known-issue-8.18-restart_on_cert_change]
222+
74223
==== Breaking changes
75224

76225
*Metricbeat*
@@ -112,6 +261,10 @@ https://github.com/elastic/beats/compare/v8.18.3\...v8.18.4[View commits]
112261
=== Beats version 8.18.3
113262
https://github.com/elastic/beats/compare/v8.18.2\...v8.18.3[View commits]
114263

264+
==== Known issues
265+
266+
include::CHANGELOG.asciidoc[tags=known-issue-8.18-restart_on_cert_change]
267+
115268
==== Bugfixes
116269

117270
*Affecting all Beats*
@@ -162,6 +315,10 @@ https://github.com/elastic/beats/compare/v8.18.2\...v8.18.3[View commits]
162315
=== Beats version 8.18.2
163316
https://github.com/elastic/beats/compare/v8.18.1\...v8.18.2[View commits]
164317

318+
==== Known issues
319+
320+
include::CHANGELOG.asciidoc[tags=known-issue-8.18-restart_on_cert_change]
321+
165322
==== Bugfixes
166323

167324
*Affecting all Beats*
@@ -203,6 +360,10 @@ https://github.com/elastic/beats/compare/v8.18.1\...v8.18.2[View commits]
203360
=== Beats version 8.18.1
204361
https://github.com/elastic/beats/compare/v8.18.0\...v8.18.1[View commits]
205362

363+
==== Known issues
364+
365+
include::CHANGELOG.asciidoc[tags=known-issue-8.18-restart_on_cert_change]
366+
206367
==== Bugfixes
207368

208369
*Filebeat*
@@ -224,6 +385,10 @@ https://github.com/elastic/beats/compare/v8.18.0\...v8.18.1[View commits]
224385
=== Beats version 8.18.0
225386
https://github.com/elastic/beats/compare/v8.17.4\...v8.18.0[View commits]
226387

388+
==== Known issues
389+
390+
include::CHANGELOG.asciidoc[tags=known-issue-8.18-restart_on_cert_change]
391+
227392
==== Breaking changes
228393

229394
*Affecting all Beats*

0 commit comments

Comments
 (0)