fluent-plugin-aggregate 1.0.7 → 1.0.8
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/lib/fluent/plugin/filter_aggregate.rb +1 -1
- 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: be70fca8ec632f9a08f29aa7249d98bd3dc74389c92052244f6e9a92c93b47d9
|
4
|
+
data.tar.gz: ed0c454ebbccc84ba813565aec3c8c1e69af3fa2d17a30072d5340e66373a0d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f4ed6bdc1a44c882173062305acb97244dbb1bb5ef7756d82f9a91d7a7373679f5d95407dbbcb11f8c5a6d65a74926d2b5cbe2c366ead1f64c1ec0e0196feb0
|
7
|
+
data.tar.gz: f1524432eaafacb112fae34d442c3d50bc3a64c4234a39de67038edf6c5eaf091bb6b399dc16b588e4f354c9cd7c780df0ed1c502da944474a2ee5f77b100deb
|
@@ -69,7 +69,7 @@ module Fluent
|
|
69
69
|
|
70
70
|
if @aggregation_names.include?("histogram") && (histogram_buckets.empty? || histogram_fields.empty?)
|
71
71
|
log.warn "histogram aggregation disabled, need histogram_buckets & histogram_fields parameters to work, please review documentation."
|
72
|
-
|
72
|
+
elsif @aggregation_names.include?("histogram") && !(histogram_buckets.empty? || histogram_fields.empty?)
|
73
73
|
log.info "histogram aggregation enabled, bucket count histogram_fields with values (le|ge) histogram_buckets parameter"
|
74
74
|
end
|
75
75
|
|