Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump included beats versions #476

Merged
merged 4 commits into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions changelog/unreleased/pr-476.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
type = "c"
message = "Update shipped beats collectors to verion 8.9.0"

issues = ["426", "437"]
pulls = ["476"]

15 changes: 11 additions & 4 deletions dist/fetch_collectors.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#!/bin/bash

ARCHS=( x86 x86_64 )
FILEBEAT_VERSION=7.11.1
WINLOGBEAT_VERSION=7.11.1
FILEBEAT_VERSION=8.9.0
FILEBEAT_VERSION_32=7.17.12
WINLOGBEAT_VERSION=8.9.0
WINLOGBEAT_VERSION_32=7.17.12

# $1: beat name
# $2: beat operating system
Expand Down Expand Up @@ -40,7 +42,12 @@ download_beat()

for ARCH in "${ARCHS[@]}"
do
download_beat "filebeat" "windows" ${FILEBEAT_VERSION} ${ARCH}
download_beat "winlogbeat" "windows" ${WINLOGBEAT_VERSION} ${ARCH}
#download_beat "filebeat" "linux" ${FILEBEAT_VERSION} ${ARCH}
:
done

download_beat "filebeat" "windows" ${FILEBEAT_VERSION} x86_64
download_beat "filebeat" "windows" ${FILEBEAT_VERSION_32} x86

download_beat "winlogbeat" "windows" ${WINLOGBEAT_VERSION} x86_64
download_beat "winlogbeat" "windows" ${WINLOGBEAT_VERSION_32} x86