logstash-input-signalsciences 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +2 -0
- data/lib/logstash/inputs/signalsciences.rb +2 -4
- data/logstash-input-signalsciences.gemspec +1 -1
- metadata +2 -3
- data/CONTRIBUTORS +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef2ac72345f4918d2c16f7d0a72e256a8ec06ce4
|
4
|
+
data.tar.gz: 6999e82e6d7e4d86b130fb971c93bcaa2dffc645
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7add1bc93c67072363afac43d244840b5743b8ba4d9b9bd3b0471fb0e89efa403a128e0b5462398f6925b1f72706059b891c6b582d85750b79961db2b9760e6d
|
7
|
+
data.tar.gz: e4ddf8193986d9637e812f5b5c35439227fae81886c50a3433f7d6f496dd2ffc6dc8f9ab2a7261dc0b12788f5ac22d2b9b52433c90cae7986529d1578bea5fe4
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Logstash Input Plugin for Signal Sciences
|
2
2
|
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/logstash-input-signalsciences.svg)](https://rubygems.org/gems/logstash-input-signalsciences)
|
4
|
+
|
3
5
|
For more detail on using the Signal Sciences logstash plugin, see [instructions](INSTRUCTIONS.md).
|
4
6
|
|
5
7
|
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
@@ -5,7 +5,6 @@ require "stud/interval"
|
|
5
5
|
require "socket" # for Socket.gethostname
|
6
6
|
require "json"
|
7
7
|
require "date"
|
8
|
-
require "rubygems"
|
9
8
|
|
10
9
|
# Fetch Signal Sciences request data.
|
11
10
|
#
|
@@ -56,9 +55,8 @@ class LogStash::Inputs::Signalsciences < LogStash::Inputs::Base
|
|
56
55
|
# set interval to value of from @from minus five minutes
|
57
56
|
@interval = @from
|
58
57
|
|
59
|
-
#
|
60
|
-
|
61
|
-
@version = spec.version
|
58
|
+
# set version for UA string
|
59
|
+
@version = "0.3.1"
|
62
60
|
|
63
61
|
@logger.info("Fetching Signal Sciences request data every #{@interval / 60} minutes.")
|
64
62
|
end # def register
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-input-signalsciences'
|
3
|
-
s.version = '0.3.
|
3
|
+
s.version = '0.3.1'
|
4
4
|
s.licenses = ['Apache-2.0']
|
5
5
|
s.summary = 'Logstash input plugin for Signal Sciences.'
|
6
6
|
s.description = 'Logstash input plugin for the Signal Sciences request feed endpoint https://docs.signalsciences.net/api/#get-request-feed'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-signalsciences
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- foospidy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logstash-core-plugin-api
|
@@ -71,7 +71,6 @@ extensions: []
|
|
71
71
|
extra_rdoc_files: []
|
72
72
|
files:
|
73
73
|
- CHANGELOG.md
|
74
|
-
- CONTRIBUTORS
|
75
74
|
- Gemfile
|
76
75
|
- INSTRUCTIONS.md
|
77
76
|
- LICENSE
|
data/CONTRIBUTORS
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
The following is a list of people who have contributed ideas, code, bug
|
2
|
-
reports, or in general have helped logstash along its way.
|
3
|
-
|
4
|
-
Contributors:
|
5
|
-
* foospidy - foospidy@users.noreply.github.com
|
6
|
-
|
7
|
-
Note: If you've sent us patches, bug reports, or otherwise contributed to
|
8
|
-
Logstash, and you aren't on the list above and want to be, please let us know
|
9
|
-
and we'll make sure you're here. Contributions from folks like you are what make
|
10
|
-
open source awesome.
|