Skip to content

Commit

Permalink
Bump included beats versions (#476)
Browse files Browse the repository at this point in the history
* bump beat versions to 8.8.2

* Keep win32 beats at version 7.17.12

Those were the last ones released for win32

We might consider removing win32 support for the sidecar as well.

* Bump to latest version 8.9.0

* Add changelog

---------

Co-authored-by: Jamie Murphy <[email protected]>
  • Loading branch information
mpfz0r and ITJamie authored Aug 7, 2023
1 parent e10b4c6 commit 6e97c9d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
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

0 comments on commit 6e97c9d

Please sign in to comment.