This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.gemspec
33 lines (32 loc) · 1.94 KB
/
.gemspec
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
Gem::Specification.new do |spec|
spec.name = 'log-export-container'
spec.licenses = ['Apache-2.0']
spec.summary = 'An application that can be easily deployed and configured to export strongDM query logs'
spec.description = 'The application acts as a syslog concentrator. Customers that want to export their strongDM query logs to a third party logging service can use the application to do so. They configure the application for the appropriate target. Deploy the application. Configure their strongDM gateways to logs to a syslog destination and set the destination to the address of the logging application host.'
spec.authors = ["StrongDM"]
spec.homepage = 'https://strongdm.github.io/log-export-container/'
spec.metadata = { "source_code_uri" => "https://github.com/strongdm/log-export-container" }
spec.files = ["create-conf.rb", "conf-utils.rb", "start.rb"] + Dir['fluentd/**/*.rb'] + Dir['fluentd/**/*.conf']
spec.executables = ["log-export-container"]
spec.version = ENV['LEC_VERSION'] || '0.0.0'
spec.add_dependency 'fluentd'
spec.add_dependency 'fluent'
spec.add_dependency 'fluent-plugin-rewrite-tag-filter'
spec.add_dependency 'fluent-plugin-s3'
spec.add_dependency 'fluent-plugin-cloudwatch-logs'
spec.add_dependency 'fluent-plugin-splunk-hec'
spec.add_dependency 'fluent-plugin-datadog'
spec.add_dependency 'fluent-plugin-azure-loganalytics'
spec.add_dependency 'fluent-plugin-sumologic_output'
spec.add_dependency 'fluent-plugin-sanitizer'
spec.add_dependency 'fluent-plugin-kafka'
spec.add_dependency 'fluent-plugin-mongo'
spec.add_dependency 'fluent-plugin-logzio'
spec.add_dependency 'fluent-plugin-grafana-loki'
spec.add_dependency 'fluent-plugin-remote_syslog'
spec.add_dependency 'fluent-plugin-elasticsearch', '5.2.4'
spec.add_dependency 'fluent-plugin-bigquery'
spec.add_dependency 'fluent-plugin-prometheus'
spec.add_dependency 'test-unit'
spec.add_dependency 'rspec'
end