logstash-output-prometheus 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 +4 -4
- data/CHANGELOG.md +2 -0
- data/README.md +3 -1
- data/lib/logstash/outputs/prometheus.rb +1 -1
- data/logstash-output-prometheus.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aef78a06c4cebe6b1ee6f18fcefafc9faeaf388f7ffb57da0fe1fb293b471f77
|
|
4
|
+
data.tar.gz: 58a22a7e159bd07fb722ee272ea1af6e3d59c23d68e57ead0320e6424e3d99c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5aff36988e31e381e51e391a647af3e44d81f32f87ef85fba7d981a7715ace193ad84836d6f2593c4512a9a27bb0174fcafb82b7482cc317420dad5e2c4a645
|
|
7
|
+
data.tar.gz: a646a44f1a3e96b8520d6dcd08affd2cdeeec516db3016bc592c2b9f609b70f197121e928e77b785c8c5fbd6991dc96990006d8ee0369ca69f6100a9b7c87dff
|
data/CHANGELOG.md
CHANGED
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 :
|
|
11
|
+
concurrency :single
|
|
12
12
|
|
|
13
13
|
config :port, :validate => :number, :default => 9640
|
|
14
14
|
|
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.
|
|
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-
|
|
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
|