logstash-filter-accesswatch 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/logstash/filters/accesswatch.rb +2 -1
- data/logstash-filter-accesswatch.gemspec +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: 90e3b8014a3bd2f7e8ac6347b59872dede3a4f46f08aeebaca40c6713609c668
|
4
|
+
data.tar.gz: 9c7e8f2632d9afa5a9995051cadfd9f2b0e5ad8e21703534c340a37bcd841038
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd76b89510f6755e2d10bebbde54f0be0214f4d3421c7bf0d24127f17f1ada9285464a6c0a543c46bd9b6862a8bfb2acc06cd53b593fdc6f2c46291683bb3126
|
7
|
+
data.tar.gz: a99cc4d20e34ee823a957399733b0629adba58c1b525cdff53c7bc682f4f9e29385411417e8a7a1af0367f99d72cad56726b442d03814eb9e85386041015ec08
|
@@ -49,7 +49,8 @@ class LogStash::Filters::Accesswatch < LogStash::Filters::Base
|
|
49
49
|
|
50
50
|
public
|
51
51
|
def register
|
52
|
-
|
52
|
+
ca_file_path = File.expand_path '../../../cert.pem', File.dirname(__FILE__)
|
53
|
+
@client = Manticore::Client.new request_timeout: @timeout, ssl: {:ca_file => ca_file_path}
|
53
54
|
if @cache_size > 0
|
54
55
|
@cache = LruRedux::ThreadSafeCache.new(@cache_size)
|
55
56
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.name = 'logstash-filter-accesswatch'
|
4
|
-
s.version = '0.2.
|
4
|
+
s.version = '0.2.5'
|
5
5
|
s.licenses = ['Apache-2.0']
|
6
6
|
s.summary = 'The Logstash filter plugin for Access Watch (http://access.watch).'
|
7
7
|
s.description = 'The Access Watch filter adds information about robots visiting your website based on data from our robot database.'
|