fluent-plugin-indicative 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77a70ff5f9f75d916912313e9ad5570700461e7c1ad32d425d8424fddff54a99
4
- data.tar.gz: b10e2ba2fa650fb0670d9e75023ae8e640a5759dc217d229abb7a3221e494cf8
3
+ metadata.gz: 2dc9076de3fc4faff42a06c42d2df7849102f6ce4bcf037be5c54e55b781fdc5
4
+ data.tar.gz: 3c61179973bc9921c3615f858923b3ec1210e1e65064426ad40d1aa2a5f62313
5
5
  SHA512:
6
- metadata.gz: 9895f1104b602c410cbbe022e2704de3b74bc8ff5cc52e6111d35840ea57b56bd03e88ecca0356b3a7c63edd209ce3def48cf6ecca3e12da8d0d87cbb438fa18
7
- data.tar.gz: ae64a4fb95fb6d2fb219d691ae9dd6ab10245ba85a84584a06bae4fc2b7c630ddf0f239d5e6c527f01cfa1525d18cb6e66d603ff4854ec7aa62d703a3841773f
6
+ metadata.gz: 40ec52fa9f4a3b7c89b5c49c1c5d0ee0d00e1be802321760d5ad83f4ad5bbbc14566bf8323d3581fc2b214fd7b9fb51587af71ecedb841246998ab84f25b4b91
7
+ data.tar.gz: cdbce7b7ea57da70b7f3e20ee16eadae2048090df9f34bd6ab009054ce4221326d07d489c44e5408a45624bec289e32d03c4b8c88175f481f0cb4168441dd612
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-indicative"
6
- s.version = "0.1.4"
6
+ s.version = "0.1.5"
7
7
  s.authors = ["Sam Millar"]
8
8
  s.email = ["sam@millar.io"]
9
9
  s.homepage = "https://github.com/millar/fluent-plugin-indicative"
@@ -25,7 +25,7 @@ class Fluent::Plugin::IndicativeOutput < Fluent::Plugin::Output
25
25
  Fluent::Plugin.register_output('indicative', self)
26
26
 
27
27
  config_param :api_key, :string, secret: true
28
- config_param :api_url, :string, default: 'https://api.indicative.com/service/event'
28
+ config_param :api_url, :string, default: 'https://api.indicative.com/service/event/batch'
29
29
  config_param :event_name_key, :string
30
30
  config_param :event_time_key, :string
31
31
  config_param :event_unique_id_keys, :array, value_type: :string
@@ -21,10 +21,6 @@ class IndicativeOutputTest < Test::Unit::TestCase
21
21
  <buffer>
22
22
  chunk_limit_records 50
23
23
  </buffer>
24
-
25
- <format>
26
- @type json
27
- </format>
28
24
  ]
29
25
 
30
26
  def create_driver(conf=STREAM_CONFIG)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-indicative
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Millar