Skip to content

Commit

Permalink
Add fluent-plugin-out-http-ext to base image
Browse files Browse the repository at this point in the history
  • Loading branch information
jvassev committed Jun 5, 2018
1 parent 08e311f commit 0b00ec5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

* Fluentd: `fluent-plugin-detect-exceptions` to base image

* Fluentd: add `fluent-plugin-out-http-ext` to base image

* Core: add plugin `truncating_remote_syslog` which truncates the tag to 32 bytes as per RFC 5424

* Core: support transparent multi-line stacktrace collapsing
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ All logs originating from a file look exactly as all other Kubernetes logs. Howe
* fluent-plugin-logentries
* fluent-plugin-loggly
* fluent-plugin-logzio
* fluent-plugin-out-http-ext
* fluent-plugin-papertrail
* fluent-plugin-parser
* fluent-plugin-record-modifier
Expand Down
6 changes: 4 additions & 2 deletions base-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENTRYPOINT ["/fluentd/entrypoint.sh"]
USER root
WORKDIR /home/fluent

COPY plugins /fluentd/plugins
ADD https://raw.githubusercontent.com/fluent/fluentd-kubernetes-daemonset/master/docker-image/v0.12/debian-elasticsearch/plugins/parser_kubernetes.rb /fluentd/plugins

RUN buildDeps="sudo make gcc g++ libc-dev ruby-dev libffi-dev" \
Expand All @@ -27,14 +26,15 @@ RUN buildDeps="sudo make gcc g++ libc-dev ruby-dev libffi-dev" \
&& echo 'gem: --no-document' >> /etc/gemrc \
&& fluent-gem install ffi \
&& fluent-gem install fluent-plugin-concat \
&& fluent-gem install fluent-plugin-detect-exceptions \
&& fluent-gem install fluent-plugin-elasticsearch \
&& fluent-gem install fluent-plugin-google-cloud \
&& fluent-gem install fluent-plugin-detect-exceptions \
&& fluent-gem install fluent-plugin-kubernetes \
&& fluent-gem install fluent-plugin-kubernetes_metadata_filter \
&& fluent-gem install fluent-plugin-logentries \
&& fluent-gem install fluent-plugin-loggly \
&& fluent-gem install fluent-plugin-logzio \
&& fluent-gem install fluent-plugin-out-http-ext \
&& fluent-gem install fluent-plugin-papertrail \
&& fluent-gem install fluent-plugin-parser \
&& fluent-gem install fluent-plugin-record-modifier \
Expand All @@ -55,3 +55,5 @@ RUN buildDeps="sudo make gcc g++ libc-dev ruby-dev libffi-dev" \
&& rm -rf /var/lib/apt/lists/* \
&& gem sources --clear-all \
&& rm -rf /tmp/* /var/tmp/* /usr/lib/ruby/gems/*/cache/*.gem

COPY plugins /fluentd/plugins

0 comments on commit 0b00ec5

Please sign in to comment.