logstash-input-syslog 0.1.6 → 1.0.0
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/CHANGELOG.md +0 -0
- data/NOTICE.TXT +5 -0
- data/README.md +1 -1
- data/logstash-input-syslog.gemspec +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aec942e0d8f3c6f5d2fa5691d106e09dbe5e0b30
|
|
4
|
+
data.tar.gz: f2adf008c9bd462c5c467fe037c1ba353791882c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2fe971518afe4334c1d02896907099557fd5b70e8dc6e2a99706ce97e48215d2007c4b2658905f96d22d4465be13ed970a38500aadc2c28ab34d99655e0b1fe
|
|
7
|
+
data.tar.gz: f1c7fb4da95a21f53f67ada65fcb743a43727f7196ae4ce9a24c173b472991746d28a3299067a6b5e7daa5c9aad9db18cdafdd0a60a89431b6b0e5ca5bfa4998
|
data/CHANGELOG.md
ADDED
|
File without changes
|
data/NOTICE.TXT
ADDED
data/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Logstash provides infrastructure to automatically generate documentation for thi
|
|
|
13
13
|
|
|
14
14
|
## Need Help?
|
|
15
15
|
|
|
16
|
-
Need help? Try #logstash on freenode IRC or the logstash
|
|
16
|
+
Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
|
|
17
17
|
|
|
18
18
|
## Developing
|
|
19
19
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-syslog'
|
|
4
|
-
s.version = '0.
|
|
4
|
+
s.version = '1.0.0'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Read syslog messages as events over the network."
|
|
7
7
|
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-syslog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-06-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logstash-core
|
|
@@ -121,9 +121,11 @@ extensions: []
|
|
|
121
121
|
extra_rdoc_files: []
|
|
122
122
|
files:
|
|
123
123
|
- .gitignore
|
|
124
|
+
- CHANGELOG.md
|
|
124
125
|
- CONTRIBUTORS
|
|
125
126
|
- Gemfile
|
|
126
127
|
- LICENSE
|
|
128
|
+
- NOTICE.TXT
|
|
127
129
|
- README.md
|
|
128
130
|
- Rakefile
|
|
129
131
|
- lib/logstash/inputs/syslog.rb
|