fluent-plugin-datadog-np 0.10.6.1 → 0.10.6.2
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/fluent-plugin-datadog-np.gemspec +1 -1
- data/lib/fluent/plugin/out_datadog.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b60a22b10a9a2c5302701b8e08d76b4af82be803
|
4
|
+
data.tar.gz: e7425002c592242f1b14270cbdfeb3ba3eb0195f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c0169f75525eb8525302fe8a2a92c8a2b0ed7f2ac17df1a5983dab9cb850796ba9ed031083cc92166256685607ae4a436c794c58516db1efe62153eff245968
|
7
|
+
data.tar.gz: 4ef05ae7a7bf0d7742faf312d36fdb1f2becb9f41f405aed5e6614679b44facfeae7254f88d57ecd35a0f77ed88e0dfa09e80bf2acd71e42435f4ce211acd59a
|
@@ -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-np"
|
12
|
-
spec.version = "0.10.6.
|
12
|
+
spec.version = "0.10.6.2"
|
13
13
|
spec.authors = ["Nicolas parfait"]
|
14
14
|
spec.email = [""]
|
15
15
|
spec.summary = "Datadog output plugin for Fluent event collector"
|
@@ -222,7 +222,7 @@ class Fluent::DatadogOutput < Fluent::BufferedOutput
|
|
222
222
|
def get_attribute_tags(record, attribute_tags)
|
223
223
|
if not attribute_tags.nil? and not record.nil?
|
224
224
|
tags = Array.new
|
225
|
-
for attribute_tag in attribute_tags
|
225
|
+
for attribute_tag in attribute_tags.split(",")
|
226
226
|
log.trace "attribute tags - datadog plugin: attr=#{attribute_tag}, value=#{record[attribute_tag]}"
|
227
227
|
tags.push(attribute_tag + ":" + record[attribute_tag]) unless record[attribute_tag].nil?
|
228
228
|
end
|