adp-fluent-plugin-graphite 0.0.16 → 0.0.17

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: bdc659c05139601bebe60bb78d620f621f325eb1b6d7818b4d3cda32507b8f6b
4
- data.tar.gz: b08bf8c9d21ea555b1ff54f0bb5fc474ef8957e8661f0a9aa6305ddfc5e7efd4
3
+ metadata.gz: dc6c538d57d214e28afe6506eaa28724538635001cea605b141e91a2594a4989
4
+ data.tar.gz: 7c99eaf2efcd0823a0feb1069c5f2b3a48290acdc1663cf625da992bc8941a7f
5
5
  SHA512:
6
- metadata.gz: 864cd915362d2c9911bacf8f7b65b6fa5b465dbaee05a17f89d7cc19280e55575726101a3a78d893d06fdae7597ac9e6db38d73e3196981ee66390e7c942767c
7
- data.tar.gz: 43681aace2378bb5c7969eccf0c7d6567c3dc6ed2bd272be4ad24b9a0841f66aca3781c167d0b0c3968cb891254b68302122ffc25f316b46185f12c82642557c
6
+ metadata.gz: e5229a0f34d63e992e75f4960284c31bad58e06cf7db604299681b6d7e51ba949695287b582bcbcaf7da9909494918292f69c7d46c3c065d3209a3ab9b466843
7
+ data.tar.gz: 514cffc5cf61f35efb5b9f654ea1b31227ae391fe072e13f0f087a9967a66c553fa9739310cc3b78bae99564ba82f8af62a4139a68d250f7bee4bf0b5e923a50
@@ -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.0.16'
6
+ gem.version = '0.0.17'
7
7
  gem.authors = ['Satoshi SUZUKI']
8
8
  gem.email = 'studio3104.com@gmail.com'
9
9
  gem.homepage = 'https://github.com/studio3104/fluent-plugin-graphite'
@@ -75,17 +75,13 @@ module Fluent::Plugin
75
75
  graphite: "tcp://#{@host}:#{@port}",
76
76
 
77
77
  # Optional: results are aggregated in 60 seconds slices ( default is 60 )
78
- slice: 60,
78
+ slice: 30,
79
79
 
80
80
  # Optional: send to graphite every 60 seconds ( default is 0 - direct send )
81
81
  interval: 30,
82
82
 
83
83
  # Optional: set the max age in seconds for records reanimation ( default is 12 hours )
84
84
  cache: 4 * 60 * 60,
85
-
86
- # Optional: The default aggregation method for multiple reports in the same slice (default is :sum).
87
- # Possible options: :sum, :avg, :replace
88
- default_aggregation_method: :avg
89
85
  }
90
86
  @client = GraphiteAPI.new options
91
87
  GraphiteAPI::Logger.init level: :debug
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.0.16
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Satoshi SUZUKI