Skip to content

Commit 3d4e045

Browse files
[8.19 changelog] add known issue for restart_on_cert_change panic (#46407)
* changelog: add known issue for restart_on_cert_change panic * add known issue to all patches and fix link --------- Co-authored-by: Colleen McGinnis <[email protected]>
1 parent 8214d92 commit 3d4e045

File tree

1 file changed

+152
-0
lines changed

1 file changed

+152
-0
lines changed

CHANGELOG.asciidoc

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

10+
==== Known issues
11+
12+
// tag::known-issue-8.19-restart_on_cert_change[]
13+
- `restart_on_cert_change` causes panic due to seccomp policy. In versions 8.19.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. 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.19-restart_on_cert_change[]
150+
10151
==== Breaking changes
11152

12153
*Affecting all Beats*
@@ -49,11 +190,18 @@ https://github.com/elastic/beats/compare/v8.19.2\...v8.19.3[View commits]
49190
=== Beats version 8.19.2
50191
https://github.com/elastic/beats/compare/v8.19.1\...v8.19.2[View commits]
51192

193+
==== Known issues
194+
195+
include::CHANGELOG.asciidoc[tags=known-issue-8.19-restart_on_cert_change]
52196

53197
[[release-notes-8.19.1]]
54198
=== Beats version 8.19.1
55199
https://github.com/elastic/beats/compare/v8.19.0\...v8.19.1[View commits]
56200

201+
==== Known issues
202+
203+
include::CHANGELOG.asciidoc[tags=known-issue-8.19-restart_on_cert_change]
204+
57205
==== Bugfixes
58206

59207
*Filebeat*
@@ -77,6 +225,10 @@ https://github.com/elastic/beats/compare/v8.19.0\...v8.19.1[View commits]
77225
=== Beats version 8.19.0
78226
https://github.com/elastic/beats/compare/v8.18.4\...v8.19.0[View commits]
79227

228+
==== Known issues
229+
230+
include::CHANGELOG.asciidoc[tags=known-issue-8.19-restart_on_cert_change]
231+
80232
==== Breaking changes
81233

82234
*Filebeat*

0 commit comments

Comments
 (0)