adp-fluent-plugin-graphite 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 972305dfab080939201cd709b16d6530d49fbfeb80cd0bad2d4f182a6f7304a4
4
- data.tar.gz: 765fdaa78c9d148294e5741bee401d5498ac9eac0a390b309bb07b87c1c303e7
3
+ metadata.gz: 91a11f6d33ffb459b113d744d38951631f6f8a43203799e23163da7350e2c93d
4
+ data.tar.gz: cb51400a9d54217313775338329e73407e40868a0152e0f7452a22d7aa2c0334
5
5
  SHA512:
6
- metadata.gz: 9a89798fa104f36eb429c4ad40456e0360c55c0f935a68c5aee69321bd4cbeb2dc1e8972da628e8cb33166f9d425accf7cdd9fd6375c34259cb789320d2e157b
7
- data.tar.gz: 5086fa5cfbfec7d4b7d3003009a773068167fe1710241dd0c629ed97c50f049979b9b366f2dba0991f74e9e10f5fb0473189b20ed1c646124a9a65c258aeeeb0
6
+ metadata.gz: d2286a09376b57fe11e4f09e44d190f81213a3ed99f54b66c6756e70ebaf570424b1809020ccbf028240a770c5b16b3cc3a1c1287b7d14cf28907fea6b02085d
7
+ data.tar.gz: 71af86c21bf2ce619c21e70d64b599869de200a5164cced81db56d62e9898b8d0e5ace5ce9d44986f4bcbc48894f4e6e591e323369945d635269c777eb3ce4b8
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = 'adp-fluent-plugin-graphite'
6
- gem.version = '0.1.1'
6
+ gem.version = '0.1.2'
7
7
  gem.authors = ['Aleksander Dudek']
8
8
  gem.email = 'adudek4@gmail.com'
9
9
  gem.homepage = ''
@@ -14,7 +14,7 @@ module Fluent::Plugin
14
14
 
15
15
  def start
16
16
  super
17
- Graphite.init_client(@log_level, @host, @port)
17
+ init_client(@log_level, @host, @port)
18
18
  end
19
19
 
20
20
  def configure(conf)
@@ -22,8 +22,8 @@ module Fluent::Plugin
22
22
  end
23
23
 
24
24
  def filter(tag, time, record)
25
- metrics = Graphite.format_metrics(tag, record)
26
- Graphite.post(metrics, time)
25
+ metrics = format_metrics(tag, record)
26
+ post(metrics, time)
27
27
  record
28
28
  end
29
29
  end
@@ -15,7 +15,7 @@ module Fluent::Plugin
15
15
 
16
16
  def start
17
17
  super
18
- Graphite.init_client(@log_level, @host, @port)
18
+ init_client(@log_level, @host, @port)
19
19
  end
20
20
 
21
21
  def configure(conf)
@@ -25,10 +25,10 @@ module Fluent::Plugin
25
25
  def process(tag, es)
26
26
  es.each do |time, record|
27
27
  emit_tag = tag.dup
28
- metrics = Graphite.format_metrics(emit_tag, record)
28
+ metrics = format_metrics(emit_tag, record)
29
29
 
30
30
  # implemented to immediate call post method in this loop, because graphite-api.gem has the buffers.
31
- Graphite.post(metrics, time)
31
+ post(metrics, time)
32
32
  end
33
33
 
34
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adp-fluent-plugin-graphite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aleksander Dudek