forked from fluent/fluentd-kubernetes-daemonset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile.erb
71 lines (69 loc) · 2.37 KB
/
Gemfile.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<% fluentd_ver = version.split("-").first[1..-1] %>
<% target = (dockerfile.split("/").last.split("-").last) %>
<% is_alpine = (dockerfile.split("/").last.split("-").first == "alpine") %>
# AUTOMATICALLY GENERATED
# DO NOT EDIT THIS FILE DIRECTLY, USE /templates/Gemfile.erb
source "https://rubygems.org"
gem "fluentd", "<%= fluentd_ver %>"
gem "oj", "3.11.0"
gem "fluent-plugin-multi-format-parser", "~> 1.0.0"
gem "fluent-plugin-concat", "~> 2.5.0"
gem "fluent-plugin-grok-parser", "~> 2.6.2"
gem "fluent-plugin-prometheus", "~> 2.0.2"
gem 'fluent-plugin-json-in-json-2', ">= 1.0.2"
gem "fluent-plugin-record-modifier", "~> 2.1.0"
gem "fluent-plugin-detect-exceptions", "~> 0.0.13"
gem "fluent-plugin-rewrite-tag-filter", "~> 2.4.0"
gem "fluent-plugin-parser-cri", "~> 0.1.0"
<% case target when "elasticsearch6" %>
gem "elasticsearch", "~> 6.0"
gem "fluent-plugin-elasticsearch", "~> 4.0.9"
<% when "elasticsearch7" %>
gem "elasticsearch", "~> 7.0"
gem "fluent-plugin-elasticsearch", "~> 5.1.1"
gem "elasticsearch-xpack", "~> 7.0"
gem "fluent-plugin-dedot_filter", "~> 1.0"
<% when "opensearch" %>
gem "fluent-plugin-opensearch", "~> 1.0.0"
<% when "logentries" %>
#gem "fluent-plugin-logentries"
<% when "loggly"%>
gem "fluent-plugin-loggly", "~> 0.0.9"
<% when "cloudwatch" %>
gem "aws-sdk-cloudwatchlogs", "~> 1.0"
gem "fluent-plugin-cloudwatch-logs", "~> 0.14.0"
<% when "stackdriver" %>
gem "fluent-plugin-google-cloud", "~> 0.4.10"
<% when "azureblob" %>
gem "azure-storage-blob", "~> 2.0"
gem "fluent-plugin-azure-storage-append-blob-lts", "~> 0.6.0"
<% when "s3" %>
gem "aws-sdk-s3", "~> 1.101"
gem "fluent-plugin-s3", "~> 1.6.1"
<% when "gcs" %>
gem "fluent-plugin-gcs", "0.4.1"
<% when "graylog" %>
gem "gelf", "3.0.0"
gem "fluent-plugin-gelf-hs", "~> 1.0.7"
<% when "logzio" %>
gem "fluent-plugin-logzio", "~> 0.0.18"
<% when "papertrail" %>
gem "fluent-plugin-papertrail", "~> 0.2.6"
<% when "syslog" %>
gem "fluent-plugin-remote_syslog"
<% when "kafka", "kafka2" %>
gem "rdkafka", "~> 0.7.0"
gem "fluent-plugin-kafka", "~> 0.17.0"
gem "fluent-plugin-avro", "~> 1.1.1"
gem "fluent-plugin-parser-avro", "~> 0.3.1"
gem "snappy", "~> 0.0.15"
<% when "kinesis" %>
gem "fluent-plugin-kinesis", "~> 3.4.0"
<% when "splunkhec" %>
gem "fluent-plugin-splunk-enterprise"
<% end %>
gem "fluent-plugin-kubernetes_metadata_filter", "~> 2.9.2"
<% if !is_alpine %>
gem "ffi"
gem "fluent-plugin-systemd", "~> 1.0.5"
<% end %>