logstash-output-prometheus 0.1.1 → 0.1.2

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: 130b0b24895276dd2b0d14e77d3b7004e5eaeff456db0f03ad0f45d47e53e4ab
4
- data.tar.gz: 0a1439290b627946dd5c97d01d8f34c5da5f8fd04a8d9d1c9897d8bc81c4236e
3
+ metadata.gz: aef78a06c4cebe6b1ee6f18fcefafc9faeaf388f7ffb57da0fe1fb293b471f77
4
+ data.tar.gz: 58a22a7e159bd07fb722ee272ea1af6e3d59c23d68e57ead0320e6424e3d99c7
5
5
  SHA512:
6
- metadata.gz: 13f01ed0e935e21ee717c82eada2b3e530c7b50b9758b9edb8d988c42869ed71b012f86e75cf1bd20dec2dd0ed644392f7ea543d2ca12addd849cb2542488d86
7
- data.tar.gz: 93d3d9ff2fd1ce56e33230513561beacb81b7b731964cea352c84178f6348e6f7340382f82a702f712cacec3a00641f8722f2f5c8167ad77c3f066c7995b12cb
6
+ metadata.gz: d5aff36988e31e381e51e391a647af3e44d81f32f87ef85fba7d981a7715ace193ad84836d6f2593c4512a9a27bb0174fcafb82b7482cc317420dad5e2c4a645
7
+ data.tar.gz: a646a44f1a3e96b8520d6dcd08affd2cdeeec516db3016bc592c2b9f609b70f197121e928e77b785c8c5fbd6991dc96990006d8ee0369ca69f6100a9b7c87dff
@@ -1,3 +1,5 @@
1
+ ## 0.1.2
2
+ - Set to be a single threaded plugin while investigation into deadlocks occurs.
1
3
  ## 0.1.1
2
4
  - Fixed bug with unique labels under the same metric name for timers
3
5
  ## 0.1.0
data/README.md CHANGED
@@ -97,4 +97,6 @@ output {
97
97
 
98
98
  ## Things to keep in mind
99
99
 
100
- As outlined in
100
+ As outlined in https://www.robustperception.io/putting-queues-in-front-of-prometheus-for-reliability, putting a queue in front of Prometheus can have negative effects. When doing this, please ensure you are monitoring the time it takes events to pass through your queue.
101
+
102
+ This is currently a beta plugin, and does not yet have official logstash adoption. One of the big things holding us back is that `prometheus-client` over at https://github.com/prometheus/client_ruby is still in alpha.
@@ -8,7 +8,7 @@ require 'prometheus/client'
8
8
  # An prometheus output that does nothing.
9
9
  class LogStash::Outputs::Prometheus < LogStash::Outputs::Base
10
10
  config_name "prometheus"
11
- concurrency :shared
11
+ concurrency :single
12
12
 
13
13
  config :port, :validate => :number, :default => 9640
14
14
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-prometheus'
3
- s.version = '0.1.1'
3
+ s.version = '0.1.2'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = 'Output logstash data to a prometheus exporter'
6
6
  # s.homepage = 'Nada'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-prometheus
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
  - Spencer Malone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-15 00:00:00.000000000 Z
11
+ date: 2019-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement