logstash-filter-throttle-prop 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/logstash-filter-throttle-prop.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45eb9268eec8e9bbd40160f0d72ef041bc3d9235
|
4
|
+
data.tar.gz: 7416e52a7ab4204abbd5820f5d07d6f3938551dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 480a1a875de4876c32ff91265e2f7a8266eb278c96e91a3b89bc10d4731962cd123644ed12255b2391beaa7d4069ee7876cca2893cd4302aed64698f043ab6dd
|
7
|
+
data.tar.gz: ca7d3c51eef613020c117fbfa2cb936ae19b3eed8b3057e3ad6b0f75f47532a7785dbfacb1da34ad75ce58bfa5196ea3156f4cae65a6e6c169c31acdef24bd87
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@ This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
|
4
4
|
|
5
5
|
It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
|
6
6
|
|
7
|
-
The throttle-prop
|
7
|
+
The logstash-filter-throttle-prop is to throttle events per a dynamic property. The filter is configured with a key, a value and a limit. The key is used to group the values. If the values with a different content are inserted more than limit, it will be filtered.
|
8
8
|
|
9
9
|
|
10
10
|
## How to install
|
@@ -1,9 +1,9 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-filter-throttle-prop'
|
3
|
-
s.version = '0.1.
|
3
|
+
s.version = '0.1.2'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.description = 'A logstash filter plugin to throttle events per properties'
|
6
|
-
s.summary =
|
6
|
+
s.summary = 'Filter to throttle events per properties'
|
7
7
|
s.homepage = 'https://github.com/JeanPinzon/logstash-filter-throttle-prop'
|
8
8
|
s.authors = ['jeanpinzon']
|
9
9
|
s.email = 'jean.pinzon1@gmail.com'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-filter-throttle-prop
|
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
|
- jeanpinzon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-05-
|
11
|
+
date: 2017-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -79,7 +79,7 @@ rubyforge_project:
|
|
79
79
|
rubygems_version: 2.6.8
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|
82
|
-
summary:
|
82
|
+
summary: Filter to throttle events per properties
|
83
83
|
test_files:
|
84
84
|
- spec/filters/throttle_prop_spec.rb
|
85
85
|
- spec/spec_helper.rb
|