fluent-plugin-prometheus-smarter 1.8.15 → 1.8.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fluent-plugin-prometheus.gemspec +1 -1
- data/lib/fluent/plugin/out_prometheus_metric.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4613edeeb6eae66442b775a972c411df0e99b0b681c9e572533b3d2a82fa0653
|
4
|
+
data.tar.gz: b88f7bc36ec43679d16cbc8d9eab143eb8f9ed2081bfe8dba0576aae5e229821
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43b7176718fab91dfaf4000a02eabd8cf7b17fc9939dfd5d34f4674820c3f3cb495714759e394e473e8aa1a61b90d6a5225a1f6ce88f584d0c3a19beadd9be19
|
7
|
+
data.tar.gz: 62a1768552da06633d9cc815ea23741dbd2560eda3584cf74f86e9e88a60669b7c3a7ab7a69ef1066dc0688afea62b73e459c2d4834f35ed0894c07b228f03cd
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "fluent-plugin-prometheus-smarter"
|
3
|
-
spec.version = "1.8.
|
3
|
+
spec.version = "1.8.16"
|
4
4
|
spec.authors = ["Masahiro Sano", "Josh Minor"]
|
5
5
|
spec.email = ["jishminor@gmail.com"]
|
6
6
|
spec.summary = %q{A fluent plugin that collects metrics and exposes for Prometheus.}
|
@@ -5,7 +5,6 @@ module Fluent::Plugin
|
|
5
5
|
class PrometheusOutputMetric < Fluent::Plugin::Output
|
6
6
|
Fluent::Plugin.register_output('prometheus_metric', self)
|
7
7
|
include Fluent::Plugin::PrometheusLabelParser
|
8
|
-
include Fluent::Plugin::Prometheus
|
9
8
|
|
10
9
|
def initialize
|
11
10
|
super
|
@@ -33,7 +32,7 @@ module Fluent::Plugin
|
|
33
32
|
def configure(conf)
|
34
33
|
super
|
35
34
|
@labels = parse_labels_elements(conf)
|
36
|
-
@expander_builder = placeholder_expander(log)
|
35
|
+
@expander_builder = Fluent::Plugin::Prometheus.placeholder_expander(log)
|
37
36
|
end
|
38
37
|
|
39
38
|
def process(tag, es)
|