fluent-plugin-logmatic 0.8.2 → 0.8.3
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 +1 -0
- data/fluent-plugin-logmatic.gemspec +1 -1
- data/lib/fluent/plugin/out_logmatic.rb +1 -0
- 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: 2a0dcd21af7bb308134c3c5d993cc2aae9900ed6
|
|
4
|
+
data.tar.gz: 9731743d33d1056d9123c0306f65bcfb5d188849
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07d7ecbbec57ee7129f11c9e923a79f402b31cefbbb6d90b2a7e55cd4c337f1cab52591900e7eb1adf53af681aa101e2470cbea7e6244ca80be3b0806171ddc0
|
|
7
|
+
data.tar.gz: 21c4a44a42b35ac0f38ac07bf5cef2cad251b97d8be17442ac58fe68f3a3b832216c3696450d9e312d713804a1e9ecfda96f7a317ab0505e66573ae78e79ff77
|
data/README.md
CHANGED
|
@@ -62,5 +62,6 @@ As fluent-plugin-logmatic is an output_buffer, you can set all output_buffer pro
|
|
|
62
62
|
| **api_key** | This parameter is required in order to authenticate your fluent agent. | nil |
|
|
63
63
|
| **use_json**| Event format, if true, the event is sent in json format. Othwerwise, in plain text. | true |
|
|
64
64
|
| **include_tag_key**| Automatically include tags in the record. | false |
|
|
65
|
+
| **tag_key**| Name of the tag attribute, if they are included. | "tag" |
|
|
65
66
|
| **use_ssl** | If true, the agent initializes a secure connection to Logmatic.io. In clear TCP otherwise. | true |
|
|
66
67
|
|**max_retries**| The number of retries before the output plugin stops. Set to -1 for unlimited retries | -1 |
|
|
@@ -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-logmatic"
|
|
7
|
-
spec.version = "0.8.
|
|
7
|
+
spec.version = "0.8.3"
|
|
8
8
|
spec.authors = ["Logmatic support team"]
|
|
9
9
|
spec.email = ["support@logmatic.io"]
|
|
10
10
|
spec.summary = "Logmatic output plugin for Fluent event collector"
|
|
@@ -9,6 +9,7 @@ class Fluent::LogmaticOutput < Fluent::BufferedOutput
|
|
|
9
9
|
# Output settings
|
|
10
10
|
config_param :use_json, :bool, :default => true
|
|
11
11
|
config_param :include_tag_key,:bool, :default => false
|
|
12
|
+
config_param :tag_key, :string, :default => 'tag'
|
|
12
13
|
|
|
13
14
|
# Connection settings
|
|
14
15
|
config_param :host, :string, :default => 'api.logmatic.io'
|