Skip to content

Commit 3d54cd8

Browse files
authored
feat: add cloudwatch & pin elasticsearch
1 parent ed545af commit 3d54cd8

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,48 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
<!-- ## [Unreleased]
8+
<!-- ## [Unreleased] - yyyy-MM-dd
99
### Added
1010
### Changed
1111
### Deprecated
1212
### Removed -->
1313

14+
## [v1.14.2] - 2021-10-28
15+
16+
### Added
17+
18+
- New plugin [fluent-plugin-cloudwatch-logs](https://github.com/fluent-plugins-nursery/fluent-plugin-cloudwatch-logs) (`v0.14.2`).
19+
20+
### Changed
21+
22+
- Pinned _Elasticsearch_ gems to `v7.13.3` to stop it blocking _OpenSearch_.
23+
1424
## [v1.14.1] - 2021-10-04
1525

1626
### Changed
1727

18-
- Updated _Fluentd_ image to [v1.14.1](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1141---20210929)
28+
- Updated _Fluentd_ image to [v1.14.1](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1141---20210929).
1929

2030
## [v1.14.0] - 2021-08-31
2131

2232
### Changed
2333

24-
- Updated _Fluentd_ image to [v1.14.0](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1140---20210830)
34+
- Updated _Fluentd_ image to [v1.14.0](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1140---20210830).
2535

2636
## [v1.13.3] - 2021-07-27
2737

2838
### Changed
2939

30-
- Updated _Fluentd_ image to [v1.13.3](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1133---20210727)
40+
- Updated _Fluentd_ image to [v1.13.3](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1133---20210727).
3141

3242
## [v1.13.2] - 2021-07-13
3343

3444
### Changed
3545

36-
- Updated _Fluentd_ image to [v1.13.2](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1132---20210712)
46+
- Updated _Fluentd_ image to [v1.13.2](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1132---20210712).
3747

3848
## [v1.13.1] - 2021-07-01
3949

4050
### Changed
4151

42-
- Updated _Fluentd_ image to [v1.13.1](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1131---20210625)
52+
- Updated _Fluentd_ image to [v1.13.1](https://github.com/fluent/fluentd/blob/master/CHANGELOG.md#release-v1131---20210625).

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ RUN set -eu; \
1515
RUN set -eu; \
1616
apk add --no-cache --virtual .build-deps sudo build-base ruby-dev; \
1717
sudo gem install \
18+
elasticsearch-api:7.13.3 \
19+
elasticsearch-transport:7.13.3 \
20+
elasticsearch:7.13.3 \
1821
fluent-plugin-aws-elasticsearch-service \
1922
fluent-plugin-azure-loganalytics \
2023
fluent-plugin-azurestorage-gen2 \
24+
fluent-plugin-cloudwatch-logs \
2125
fluent-plugin-concat \
2226
fluent-plugin-datadog \
2327
fluent-plugin-elasticsearch \

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Fluentd Aggregator
22

3+
[![Docker Image Version (latest semver)](https://img.shields.io/docker/v/stevehipwell/fluentd-aggregator?sort=semver)](https://hub.docker.com/r/stevehipwell/fluentd-aggregator)
34
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
45

56
A [Fluentd](https://www.fluentd.org/) _Docker_ image to be used for log aggregation and based on the official [Fluentd Docker image](https://github.com/fluent/fluentd-docker-image).
@@ -15,10 +16,11 @@ The following plugins have been added to the base image.
1516
- [fluent-plugin-aws-elasticsearch-service](https://github.com/atomita/fluent-plugin-aws-elasticsearch-service)
1617
- [fluent-plugin-azure-loganalytics](https://github.com/yokawasa/fluent-plugin-azure-loganalytics)
1718
- [fluent-plugin-azurestorage-gen2](https://github.com/oleewere/fluent-plugin-azurestorage-gen2)
19+
- [fluent-plugin-cloudwatch-logs](https://github.com/fluent-plugins-nursery/fluent-plugin-cloudwatch-logs)
1820
- [fluent-plugin-concat](https://github.com/fluent-plugins-nursery/fluent-plugin-concat)
1921
- [fluent-plugin-datadog](https://github.com/DataDog/fluent-plugin-datadog)
2022
- [fluent-plugin-elasticsearch](https://docs.fluentd.org/output/elasticsearch)
21-
- [fluent-plugin-grafana-loki](https://github.com/grafana/loki/tree/master/cmd/fluentd)
23+
- [fluent-plugin-grafana-loki](https://github.com/grafana/loki/tree/main/clients/cmd/fluentd)
2224
- [fluent-plugin-prometheus](https://github.com/fluent/fluent-plugin-prometheus)
2325
- [fluent-plugin-record-modifier](https://github.com/repeatedly/fluent-plugin-record-modifier)
2426
- [fluent-plugin-rewrite-tag-filter](https://github.com/fluent/fluent-plugin-rewrite-tag-filter)

0 commit comments

Comments
 (0)