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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 397c268da8e4803ae534093870663686d66304fc
4
- data.tar.gz: b654b661334d8313f73d46d13bcfaa037422b870
3
+ metadata.gz: 2a0dcd21af7bb308134c3c5d993cc2aae9900ed6
4
+ data.tar.gz: 9731743d33d1056d9123c0306f65bcfb5d188849
5
5
  SHA512:
6
- metadata.gz: 83b909ecb321d9234231c4677b829813db4ddb71cbaf3684ae974415f4bd1aabe10fb120b3621ce84363fba0960e79b2415961735c512aeb0cab85d1a9a1bcdb
7
- data.tar.gz: 22a7cf716fe4334e4c5eb1d4f4fdba6bf4dc1fc310d6f22f8d8d8fe821da48aa77574d13946b09b5ea86428f6c45f03b00411892616c96295303ab35221afd2b
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.2"
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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-logmatic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Logmatic support team