fluent-plugin-logentries-simple-config 0.2.14x → 0.2.14y
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9f713571d4f8880deb56e85945dadfa8a97f645
|
|
4
|
+
data.tar.gz: fb85fccf39bad163d1c4ca8e654dee329229ce3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d08871eaf7d8e48b39ba833c4cfc171a6fd16a8eba36b2b114c3e80291b9ac899e6007373ae6375d428acc3624f0120b5e7ee82210b6f5161226da5f5f984cb6
|
|
7
|
+
data.tar.gz: 4d3547374b45818032b8dec12bc36837e96fdac191e8e7d4836032031710eb3342220a3c33e5c52dcccbc3e26dda390db317919f01730b54faee4cce4fd4a4aa
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "fluent-plugin-logentries-simple-config"
|
|
7
|
-
spec.version = "0.2.
|
|
7
|
+
spec.version = "0.2.14y"
|
|
8
8
|
spec.authors = ["notmaxx"]
|
|
9
9
|
spec.email = ["notmaxx@gmail.com"]
|
|
10
10
|
spec.summary = "Logentries output plugin for Fluent event"
|
|
@@ -121,7 +121,7 @@ class Fluent::LogentriesOutput < Fluent::BufferedOutput
|
|
|
121
121
|
# extra tags
|
|
122
122
|
tags = r.map{ |k,v| "#{k}: #{v}" }.join(', ')
|
|
123
123
|
# final message
|
|
124
|
-
prefix + msg + (tags.present? && msg.present? ? "
|
|
124
|
+
prefix + msg + (tags.present? && msg.present? ? (",\t\t" + tags) : tags)
|
|
125
125
|
end
|
|
126
126
|
|
|
127
127
|
send_logentries(le_app_token || @token, message)
|