fluent-plugin-sumologic_output 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/fluent-plugin-sumologic_output.gemspec +1 -1
- data/lib/fluent/plugin/out_sumologic.rb +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0144c78f0b0c6a11e537af58ee7bcff22357a4c2bb8b8b9bd13d931285b34e51
|
4
|
+
data.tar.gz: 3c7762699f4f0bdfbaf2c62b8d10f3d32807719309138416a1becae98afc0b6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82cd06111282a63374adffbbb17eee41948c539eca7468c35bda264a486822a82aeaa811a1281f727d3741a4f673e81f4a8483732b8550a1060ee81810c3ed3c
|
7
|
+
data.tar.gz: a5a9a5ea92bfa159ea634d6590adcadf06084ce47d4e07b76341be1d19fc4e1c19e5cadf32948d9356d9a77523c40ed5c6718cee4b097aed49902c50e6afa058
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file. Tracking did not begin until version 1.10.
|
4
4
|
|
5
|
+
<a name="1.3.1"></a>
|
6
|
+
# [1.3.1] (2018-08-30)
|
7
|
+
|
8
|
+
* [Sumo Logic endpoint is a secret](https://github.com/SumoLogic/fluentd-output-sumologic/pull/32)
|
9
|
+
|
5
10
|
<a name="1.3.0"></a>
|
6
11
|
# [1.3.0] (2018-08-08)
|
7
12
|
|
@@ -67,4 +72,4 @@ All notable changes to this project will be documented in this file. Tracking di
|
|
67
72
|
<a name="0.0.3"></a>
|
68
73
|
# [0.0.3] (2016-12-10)
|
69
74
|
|
70
|
-
* Initial Release
|
75
|
+
* Initial Release
|
data/README.md
CHANGED
@@ -9,7 +9,7 @@ This plugin has been designed to output logs or metrics to [SumoLogic](http://ww
|
|
9
9
|
| In keeping with industry standard security best practices, as of May 31, 2018, the Sumo Logic service will only support TLS version 1.2 going forward. Verify that all connections to Sumo Logic endpoints are made from software that supports TLS 1.2. |
|
10
10
|
|
11
11
|
## Support
|
12
|
-
The code in this repository has been developed in collaboration with the Sumo Logic community and is not supported via standard Sumo Logic Support channels. For any issues or questions please submit an issue
|
12
|
+
The code in this repository has been developed in collaboration with the Sumo Logic community and is not supported via standard Sumo Logic Support channels. For any issues or questions please submit an issue within the GitHub repository. The maintainers of this project will work directly with the community to answer any questions, address bugs, or review any requests for new features.
|
13
13
|
|
14
14
|
## License
|
15
15
|
Released under Apache 2.0 License.
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "fluent-plugin-sumologic_output"
|
7
|
-
gem.version = "1.3.
|
7
|
+
gem.version = "1.3.1"
|
8
8
|
gem.authors = ["Steven Adams", "Frank Reno"]
|
9
9
|
gem.email = ["stevezau@gmail.com", "frank.reno@me.com"]
|
10
10
|
gem.description = %q{Output plugin to SumoLogic HTTP Endpoint}
|
@@ -69,7 +69,7 @@ class Fluent::Plugin::Sumologic < Fluent::Plugin::Output
|
|
69
69
|
|
70
70
|
config_param :data_type, :string, :default => DEFAULT_DATA_TYPE
|
71
71
|
config_param :metric_data_format, :default => DEFAULT_METRIC_FORMAT_TYPE
|
72
|
-
config_param :endpoint, :string
|
72
|
+
config_param :endpoint, :string, secret: true
|
73
73
|
config_param :log_format, :string, :default => 'json'
|
74
74
|
config_param :log_key, :string, :default => 'message'
|
75
75
|
config_param :source_category, :string, :default => nil
|
@@ -296,4 +296,3 @@ class Fluent::Plugin::Sumologic < Fluent::Plugin::Output
|
|
296
296
|
|
297
297
|
end
|
298
298
|
end
|
299
|
-
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-sumologic_output
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Adams
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-08-
|
12
|
+
date: 2018-08-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|