fluent-plugin-datadog 0.11.0 → 0.11.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/README.md +13 -0
- data/fluent-plugin-datadog.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5d03f1a431fabff4b1578b16530b66af5c4ed9108fafd3149ebff3c3aaeae97
|
|
4
|
+
data.tar.gz: b0de09ecbf8cd35ffb0b8e5135dc9b362e9a34f8ebec7af1574c54fb331f2e2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99e3edfafaa3917b04bba0152462cbbafcba16c71b16ea828b46ec3d526d2808c066474eaba0044f37f0af04f94e59a178b35a8a6c8954a59ecd6132f97dfcb7
|
|
7
|
+
data.tar.gz: 8fb07f8e11898794ef21881694f3f9501d95a8dd80b375fe899ed959b81faa6aa1bd523fe792b315f762c32249b8952e26e332c79f0d240d4ecc9f79f56b12b3
|
data/README.md
CHANGED
|
@@ -104,3 +104,16 @@ Configuration example:
|
|
|
104
104
|
type kubernetes_metadata
|
|
105
105
|
</filter>
|
|
106
106
|
```
|
|
107
|
+
|
|
108
|
+
## Build
|
|
109
|
+
|
|
110
|
+
To build a new version of this plugin and push it to RubyGems:
|
|
111
|
+
|
|
112
|
+
- Update the version in the .gemspec file accordingly
|
|
113
|
+
- `rake build` to build the gem file
|
|
114
|
+
- `rake release` to push the new gem to RubyGems
|
|
115
|
+
|
|
116
|
+
**Note**: The latest command will fail without appropriate credentials configured. You can set those credentials by running the following command:
|
|
117
|
+
|
|
118
|
+
`curl -u <USERNAME> https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials`, it will ask for your password.
|
|
119
|
+
|
|
@@ -9,7 +9,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
9
9
|
|
|
10
10
|
Gem::Specification.new do |spec|
|
|
11
11
|
spec.name = "fluent-plugin-datadog"
|
|
12
|
-
spec.version = "0.11.
|
|
12
|
+
spec.version = "0.11.1"
|
|
13
13
|
spec.authors = ["Datadog Solutions Team"]
|
|
14
14
|
spec.email = ["support@datadoghq.com"]
|
|
15
15
|
spec.summary = "Datadog output plugin for Fluent event collector"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-datadog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Datadog Solutions Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
86
86
|
version: '0'
|
|
87
87
|
requirements: []
|
|
88
88
|
rubyforge_project:
|
|
89
|
-
rubygems_version: 2.7.
|
|
89
|
+
rubygems_version: 2.7.10
|
|
90
90
|
signing_key:
|
|
91
91
|
specification_version: 4
|
|
92
92
|
summary: Datadog output plugin for Fluent event collector
|