Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
74b7516
Added testing of filebeat version 9.2 in test-integrations-support-fi…
PavelShilin89 Oct 23, 2025
b8f7f0a
Added configuration section for Filebeat 9.2+ with filestream input t…
PavelShilin89 Oct 23, 2025
14e1de0
docs: Auto-translate documentation changes by PavelShilin89
github-actions[bot] Oct 23, 2025
8050f28
Update docs Filebeat.md and test-integrations-support-filebeat-versio…
PavelShilin89 Oct 27, 2025
8bd9df4
docs: Auto-translate documentation changes by PavelShilin89
github-actions[bot] Oct 27, 2025
05a2937
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Oct 27, 2025
9d55c08
Unified configuration for Filebeat 9.0+ (9.0, 9.1, 9.2+)
PavelShilin89 Oct 28, 2025
cfb1d80
docs: Auto-translate documentation changes by PavelShilin89
github-actions[bot] Oct 28, 2025
c3f155e
Remove outdated Chinese & Rissuan Filebeat translation
PavelShilin89 Oct 28, 2025
8278899
Revert "Remove outdated Chinese & Rissuan Filebeat translation"
PavelShilin89 Oct 28, 2025
77a21ce
Update test/clt-tests/integrations/test-integrations-support-filebeat…
PavelShilin89 Oct 28, 2025
d23e5c4
For all 9.x versions, used filestream with fingerprint disabled
PavelShilin89 Oct 28, 2025
051bf0e
Merge branch 'test/added-test-filebeat-9.2' of https://github.com/man…
PavelShilin89 Oct 28, 2025
6d1420f
Final fix test-integrations-support-filebeat-versions.rec
PavelShilin89 Oct 28, 2025
dcd7337
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Oct 28, 2025
fe1ed8e
Replaced skip_filebeat with skip_standard_test
PavelShilin89 Oct 29, 2025
ae7e17c
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Oct 29, 2025
438f269
Update test-integrations-support-filebeat-versions.rec
PavelShilin89 Oct 29, 2025
5e9dbb5
Fix for glibc 2.35+ compatibility (Ubuntu 22.04+)
PavelShilin89 Oct 29, 2025
d325bdc
docs: Auto-translate documentation changes by PavelShilin89
github-actions[bot] Oct 29, 2025
d62436a
Updated output
PavelShilin89 Oct 29, 2025
908ed6b
Merge branch 'test/added-test-filebeat-9.2' of https://github.com/man…
PavelShilin89 Oct 29, 2025
1c310c7
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Oct 29, 2025
0b71d48
Updated conflict-handling-verification.rec
PavelShilin89 Oct 28, 2025
c237bdf
Deleted test-integrations-support-filebeat-versions.rec
PavelShilin89 Oct 29, 2025
1499b19
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Oct 29, 2025
682e9e6
docs: Auto-translate documentation changes by PavelShilin89
github-actions[bot] Oct 29, 2025
7b8a6d8
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Oct 31, 2025
82d024e
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Nov 3, 2025
fbf5b30
Update translator
PavelShilin89 Nov 3, 2025
7000ddb
Documentation files for calling the auto-translator have been deleted.
PavelShilin89 Nov 3, 2025
d3c705f
Merge branch 'master' into test/added-test-filebeat-9.2
PavelShilin89 Nov 3, 2025
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
150 changes: 0 additions & 150 deletions manual/chinese/Integration/Filebeat.md

This file was deleted.

17 changes: 15 additions & 2 deletions manual/english/Integration/Filebeat.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ Now, Manticore also supports the use of Filebeat as processing pipelines. This a

Configuration varies depending on which version of Filebeat you're using.

### Configuration for Filebeat 7.17 - 8.0
### Configuration for Filebeat 7.17, 8.0, 8.1

```
> **Important**: Filebeat versions 7.17.0, 8.0.0, and 8.1.0 have a known issue with glibc 2.35+ (used in Ubuntu 22.04 and newer distributions). These versions may crash with "Fatal glibc error: rseq registration failed". To fix this, add the `seccomp` configuration as shown below.

```yaml
filebeat.inputs:
- type: log
enabled: true
Expand All @@ -25,13 +27,24 @@ output.elasticsearch:
hosts: ["http://localhost:9308"]
index: "dpkg_log"
compression_level: 0
allow_older_versions: true # Required for 8.1

# Fix for glibc 2.35+ compatibility (Ubuntu 22.04+)
seccomp:
default_action: allow
syscalls:
- action: allow
names:
- rseq

setup.ilm.enabled: false
setup.template.enabled: false
setup.template.name: "dpkg_log"
setup.template.pattern: "dpkg_log"
```

**References**: [Issue #30576](https://github.com/elastic/beats/issues/30576), [PR #30620](https://github.com/elastic/beats/pull/30620)


### Configuration for Filebeat 8.1 - 8.10

Expand Down
150 changes: 0 additions & 150 deletions manual/russian/Integration/Filebeat.md

This file was deleted.

Loading