-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
671 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# AUTOMATICALLY GENERATED | ||
# DO NOT EDIT THIS FILE DIRECTLY, USE /templates/Dockerfile.erb | ||
|
||
FROM fluent/fluentd:v1.11.1-debian-1.0 | ||
|
||
LABEL maintainer="Eduardo Silva <[email protected]>" | ||
USER root | ||
WORKDIR /home/fluent | ||
ENV PATH /fluentd/vendor/bundle/ruby/2.6.0/bin:$PATH | ||
ENV GEM_PATH /fluentd/vendor/bundle/ruby/2.6.0 | ||
ENV GEM_HOME /fluentd/vendor/bundle/ruby/2.6.0 | ||
# skip runtime bundler installation | ||
ENV FLUENTD_DISABLE_BUNDLER_INJECTION 1 | ||
|
||
COPY Gemfile* /fluentd/ | ||
RUN buildDeps="sudo make gcc g++ libc-dev libffi-dev" \ | ||
runtimeDeps="" \ | ||
&& apt-get update \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install \ | ||
-y --no-install-recommends \ | ||
$buildDeps $runtimeDeps net-tools \ | ||
&& gem install bundler --version 2.1.4 \ | ||
&& bundle config silence_root_warning true \ | ||
&& bundle install --gemfile=/fluentd/Gemfile --path=/fluentd/vendor/bundle \ | ||
&& SUDO_FORCE_REMOVE=yes \ | ||
apt-get purge -y --auto-remove \ | ||
-o APT::AutoRemove::RecommendsImportant=false \ | ||
$buildDeps \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& gem sources --clear-all \ | ||
&& rm -rf /tmp/* /var/tmp/* /usr/lib/ruby/gems/*/cache/*.gem | ||
|
||
# Copy configuration files | ||
COPY ./conf/fluent.conf /fluentd/etc/ | ||
COPY ./conf/systemd.conf /fluentd/etc/ | ||
COPY ./conf/kubernetes.conf /fluentd/etc/ | ||
COPY ./conf/prometheus.conf /fluentd/etc/ | ||
RUN touch /fluentd/etc/disable.conf | ||
|
||
# Copy plugins | ||
COPY plugins /fluentd/plugins/ | ||
COPY entrypoint.sh /fluentd/entrypoint.sh | ||
|
||
# Environment variables | ||
ENV FLUENTD_OPT="" | ||
ENV FLUENTD_CONF="fluent.conf" | ||
|
||
# Overwrite ENTRYPOINT to run fluentd as root for /var/log / /var/lib | ||
ENTRYPOINT ["tini", "--", "/fluentd/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# AUTOMATICALLY GENERATED | ||
# DO NOT EDIT THIS FILE DIRECTLY, USE /templates/Gemfile.erb | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "fluentd", "1.11.1" | ||
gem "oj", "3.8.1" | ||
gem "fluent-plugin-multi-format-parser", "~> 1.0.0" | ||
gem "fluent-plugin-concat", "~> 2.4.0" | ||
gem "fluent-plugin-grok-parser", "~> 2.6.0" | ||
gem "fluent-plugin-prometheus", "~> 1.6.1" | ||
gem 'fluent-plugin-json-in-json-2', ">= 1.0.2" | ||
gem "fluent-plugin-record-modifier", "~> 2.0.0" | ||
gem "fluent-plugin-detect-exceptions", "~> 0.0.12" | ||
gem "fluent-plugin-rewrite-tag-filter", "~> 2.2.0" | ||
gem "aws-sdk-s3", "~> 1.0" | ||
gem "fluent-plugin-s3", "~> 1.1.6" | ||
gem "fluent-plugin-kubernetes_metadata_filter", "~> 2.3.0" | ||
gem "ffi" | ||
gem "fluent-plugin-systemd", "~> 1.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
addressable (2.7.0) | ||
public_suffix (>= 2.0.2, < 5.0) | ||
aws-eventstream (1.1.0) | ||
aws-partitions (1.337.0) | ||
aws-sdk-core (3.103.0) | ||
aws-eventstream (~> 1, >= 1.0.2) | ||
aws-partitions (~> 1, >= 1.239.0) | ||
aws-sigv4 (~> 1.1) | ||
jmespath (~> 1.0) | ||
aws-sdk-kms (1.35.0) | ||
aws-sdk-core (~> 3, >= 3.99.0) | ||
aws-sigv4 (~> 1.1) | ||
aws-sdk-s3 (1.72.0) | ||
aws-sdk-core (~> 3, >= 3.102.1) | ||
aws-sdk-kms (~> 1) | ||
aws-sigv4 (~> 1.1) | ||
aws-sdk-sqs (1.29.0) | ||
aws-sdk-core (~> 3, >= 3.99.0) | ||
aws-sigv4 (~> 1.1) | ||
aws-sigv4 (1.2.1) | ||
aws-eventstream (~> 1, >= 1.0.2) | ||
concurrent-ruby (1.1.6) | ||
cool.io (1.6.0) | ||
domain_name (0.5.20190701) | ||
unf (>= 0.0.5, < 1.0.0) | ||
ffi (1.13.1) | ||
ffi-compiler (1.0.1) | ||
ffi (>= 1.0.0) | ||
rake | ||
fluent-config-regexp-type (1.0.0) | ||
fluentd (> 1.0.0, < 2) | ||
fluent-plugin-concat (2.4.0) | ||
fluentd (>= 0.14.0, < 2) | ||
fluent-plugin-detect-exceptions (0.0.13) | ||
fluentd (>= 0.10) | ||
fluent-plugin-grok-parser (2.6.1) | ||
fluentd (>= 0.14.6, < 2) | ||
fluent-plugin-json-in-json-2 (1.0.2) | ||
fluentd (>= 0.14.0, < 2) | ||
yajl-ruby (~> 1.0) | ||
fluent-plugin-kubernetes_metadata_filter (2.3.0) | ||
fluentd (>= 0.14.0, < 2) | ||
kubeclient (< 5) | ||
lru_redux | ||
fluent-plugin-multi-format-parser (1.0.0) | ||
fluentd (>= 0.14.0, < 2) | ||
fluent-plugin-prometheus (1.6.1) | ||
fluentd (>= 0.14.20, < 2) | ||
prometheus-client (< 0.10) | ||
fluent-plugin-record-modifier (2.0.1) | ||
fluentd (>= 1.0, < 2) | ||
fluent-plugin-rewrite-tag-filter (2.2.0) | ||
fluent-config-regexp-type | ||
fluentd (>= 0.14.2, < 2) | ||
fluent-plugin-s3 (1.1.11) | ||
aws-sdk-s3 (~> 1.0) | ||
aws-sdk-sqs (~> 1.0) | ||
fluentd (>= 0.14.22, < 2) | ||
fluent-plugin-systemd (1.0.2) | ||
fluentd (>= 0.14.11, < 2) | ||
systemd-journal (~> 1.3.2) | ||
fluentd (1.11.1) | ||
cool.io (>= 1.4.5, < 2.0.0) | ||
http_parser.rb (>= 0.5.1, < 0.7.0) | ||
msgpack (>= 1.3.1, < 2.0.0) | ||
serverengine (>= 2.0.4, < 3.0.0) | ||
sigdump (~> 0.2.2) | ||
strptime (>= 0.2.2, < 1.0.0) | ||
tzinfo (>= 1.0, < 3.0) | ||
tzinfo-data (~> 1.0) | ||
yajl-ruby (~> 1.0) | ||
http (4.4.1) | ||
addressable (~> 2.3) | ||
http-cookie (~> 1.0) | ||
http-form_data (~> 2.2) | ||
http-parser (~> 1.2.0) | ||
http-accept (1.7.0) | ||
http-cookie (1.0.3) | ||
domain_name (~> 0.5) | ||
http-form_data (2.3.0) | ||
http-parser (1.2.1) | ||
ffi-compiler (>= 1.0, < 2.0) | ||
http_parser.rb (0.6.0) | ||
jmespath (1.4.0) | ||
kubeclient (4.7.0) | ||
http (>= 3.0, < 5.0) | ||
recursive-open-struct (~> 1.1, >= 1.1.1) | ||
rest-client (~> 2.0) | ||
lru_redux (1.1.0) | ||
mime-types (3.3.1) | ||
mime-types-data (~> 3.2015) | ||
mime-types-data (3.2020.0512) | ||
msgpack (1.3.3) | ||
netrc (0.11.0) | ||
oj (3.8.1) | ||
prometheus-client (0.9.0) | ||
quantile (~> 0.2.1) | ||
public_suffix (4.0.5) | ||
quantile (0.2.1) | ||
rake (13.0.1) | ||
recursive-open-struct (1.1.2) | ||
rest-client (2.1.0) | ||
http-accept (>= 1.7.0, < 2.0) | ||
http-cookie (>= 1.0.2, < 2.0) | ||
mime-types (>= 1.16, < 4.0) | ||
netrc (~> 0.8) | ||
serverengine (2.2.1) | ||
sigdump (~> 0.2.2) | ||
sigdump (0.2.4) | ||
strptime (0.2.4) | ||
systemd-journal (1.3.3) | ||
ffi (~> 1.9) | ||
tzinfo (2.0.2) | ||
concurrent-ruby (~> 1.0) | ||
tzinfo-data (1.2020.1) | ||
tzinfo (>= 1.0.0) | ||
unf (0.1.4) | ||
unf_ext | ||
unf_ext (0.0.7.7) | ||
yajl-ruby (1.4.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
aws-sdk-s3 (~> 1.0) | ||
ffi | ||
fluent-plugin-concat (~> 2.4.0) | ||
fluent-plugin-detect-exceptions (~> 0.0.12) | ||
fluent-plugin-grok-parser (~> 2.6.0) | ||
fluent-plugin-json-in-json-2 (>= 1.0.2) | ||
fluent-plugin-kubernetes_metadata_filter (~> 2.3.0) | ||
fluent-plugin-multi-format-parser (~> 1.0.0) | ||
fluent-plugin-prometheus (~> 1.6.1) | ||
fluent-plugin-record-modifier (~> 2.0.0) | ||
fluent-plugin-rewrite-tag-filter (~> 2.2.0) | ||
fluent-plugin-s3 (~> 1.1.6) | ||
fluent-plugin-systemd (~> 1.0.1) | ||
fluentd (= 1.11.1) | ||
oj (= 3.8.1) | ||
|
||
BUNDLED WITH | ||
2.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
# AUTOMATICALLY GENERATED | ||
# DO NOT EDIT THIS FILE DIRECTLY, USE /templates/conf/fluent.conf.erb | ||
|
||
@include "#{ENV['FLUENTD_SYSTEMD_CONF'] || 'systemd'}.conf" | ||
@include "#{ENV['FLUENTD_PROMETHEUS_CONF'] || 'prometheus'}.conf" | ||
@include kubernetes.conf | ||
@include conf.d/*.conf | ||
|
||
<match **> | ||
# docs: https://docs.fluentd.org/v0.12/articles/out_s3 | ||
# note: this configuration relies on the nodes have an IAM instance profile with access to your S3 bucket | ||
@type s3 | ||
@id out_s3 | ||
@log_level info | ||
s3_bucket "#{ENV['S3_BUCKET_NAME']}" | ||
s3_region "#{ENV['S3_BUCKET_REGION']}" | ||
s3_object_key_format %{path}%Y/%m/%d/cluster-log-%{index}.%{file_extension} | ||
<inject> | ||
time_key time | ||
tag_key tag | ||
localtime false | ||
</inject> | ||
<format> | ||
@type json | ||
</format> | ||
<buffer> | ||
@type file | ||
path /var/log/fluentd-buffers/s3.buffer | ||
timekey 3600 | ||
timekey_use_utc true | ||
chunk_limit_size 256m | ||
</buffer> | ||
</match> |
Oops, something went wrong.