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

Cherry-pick #17198 to 7.x: Update redis dependency as output #17234

Merged
merged 1 commit into from
Mar 25, 2020
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
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add `translate_sid` processor on Windows for converting Windows security identifier (SID) values to names. {issue}7451[7451] {pull}16013[16013]
- Update RPM packages contained in Beat Docker images. {issue}17035[17035]
- Add Kerberos support to Kafka input and output. {pull}16781[16781]
- Update supported versions of `redis` output. {pull}17198[17198]

*Auditbeat*

Expand Down
3 changes: 2 additions & 1 deletion libbeat/outputs/redis/docs/redis.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ output.redis:

==== Compatibility

This output works with Redis 3.2.4.
This output is expected to work with all Redis versions between 5.0.8 and 3.2.4. Other versions might work as well,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I realize this is the backport PR which mirrors the PR to master, but any reason we listed the versions in this order? Ascending order seems more natural to me, but perhaps that's an English bias?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I admit I missed it here, I will merge this PR and do another round of PRs to fix it.

but are not supported.

==== Configuration options

Expand Down
2 changes: 1 addition & 1 deletion testing/environments/docker/redis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM redis:3.2.4-alpine
FROM redis:5.0.8-alpine
HEALTHCHECK --interval=1s --retries=600 CMD nc -z localhost 6379