logstash-output-neo4j 2.0.4-java → 2.0.5-java

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 869b3b63052e8d1d612d8cfccae9eef8a689d738
4
- data.tar.gz: 49538bd84efe6b84271f5fda8184ecbc71b8391f
2
+ SHA256:
3
+ metadata.gz: 1665b5c75224b18ae2659a802598e0698b145b19e7b117c096470bb848dc6b2f
4
+ data.tar.gz: a619f75b780746b716a70c1e5e857718347792e4e3af6d3a1c1d93fc6ca9c969
5
5
  SHA512:
6
- metadata.gz: 2a6ec1d2ec207f7112a8cf43bf2737cca6ab8f65a89982cba8b5afccb3a7a71e56237098792f8bea39330e49e2f7fca4caa4b9893f943561e8b90a834572b5cf
7
- data.tar.gz: d8d8fd44f05eb56ec76147aee6705f4289797e7d1de6c1de968ed38302bc48a04ce64a057977db58fa0a2959e04da969082d1a741f3f529dbc90c83a664a969f
6
+ metadata.gz: 20d02e5b51cc5f4d1fceae35ff43aadd659dd7ce429e7f81ab89880754e55535d3845422f3de64b770ae4256c54d1e33cdb556ab392765f71e0fb122c429b819
7
+ data.tar.gz: 171c01b5f2b9ecbcda7fa97ad71cada451e1cb4dd9293b2ecc20883cf4b01ff1a06fdb8b7584e2ebad87c49f31fcd2f2cdabcc3b63573c6ce971178d9280e1dc
data/Gemfile CHANGED
@@ -1,2 +1,11 @@
1
1
  source 'https://rubygems.org'
2
+
2
3
  gemspec
4
+
5
+ logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
6
+ use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
7
+
8
+ if Dir.exist?(logstash_path) && use_logstash_source
9
+ gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
10
+ gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
11
+ end
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2015 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Logstash Plugin
2
2
 
3
- [![Build
4
- Status](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Outputs/job/logstash-plugin-output-neo4j-unit/badge/icon)](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Outputs/job/logstash-plugin-output-neo4j-unit/)
3
+ [![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-output-neo4j.svg)](https://travis-ci.org/logstash-plugins/logstash-output-neo4j)
5
4
 
6
5
  This is a plugin for [Logstash](https://github.com/elastic/logstash).
7
6
 
@@ -56,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
56
55
  ```
57
56
  - Install plugin
58
57
  ```sh
58
+ # Logstash 2.3 and higher
59
+ bin/logstash-plugin install --no-verify
60
+
61
+ # Prior to Logstash 2.3
59
62
  bin/plugin install --no-verify
63
+
60
64
  ```
61
65
  - Run Logstash with your plugin
62
66
  ```sh
@@ -74,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
74
78
  ```
75
79
  - Install the plugin from the Logstash home
76
80
  ```sh
77
- bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
81
+ # Logstash 2.3 and higher
82
+ bin/logstash-plugin install --no-verify
83
+
84
+ # Prior to Logstash 2.3
85
+ bin/plugin install --no-verify
86
+
78
87
  ```
79
88
  - Start Logstash and proceed to test the plugin
80
89
 
@@ -0,0 +1,53 @@
1
+ :plugin: neo4j
2
+ :type: output
3
+
4
+ ///////////////////////////////////////////
5
+ START - GENERATED VARIABLES, DO NOT EDIT!
6
+ ///////////////////////////////////////////
7
+ :version: %VERSION%
8
+ :release_date: %RELEASE_DATE%
9
+ :changelog_url: %CHANGELOG_URL%
10
+ :include_path: ../../../../logstash/docs/include
11
+ ///////////////////////////////////////////
12
+ END - GENERATED VARIABLES, DO NOT EDIT!
13
+ ///////////////////////////////////////////
14
+
15
+ [id="plugins-{type}-{plugin}"]
16
+
17
+ === Neo4j output plugin
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+
24
+
25
+ [id="plugins-{type}s-{plugin}-options"]
26
+ ==== Neo4j Output Configuration Options
27
+
28
+ This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
29
+
30
+ [cols="<,<,<",options="header",]
31
+ |=======================================================================
32
+ |Setting |Input type|Required
33
+ | <<plugins-{type}s-{plugin}-path>> |<<string,string>>|Yes
34
+ |=======================================================================
35
+
36
+ Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
37
+ output plugins.
38
+
39
+ &nbsp;
40
+
41
+ [id="plugins-{type}s-{plugin}-path"]
42
+ ===== `path`
43
+
44
+ * This is a required setting.
45
+ * Value type is <<string,string>>
46
+ * There is no default value for this setting.
47
+
48
+ The path within your file system where the neo4j database is located
49
+
50
+
51
+
52
+ [id="plugins-{type}s-{plugin}-common-options"]
53
+ include::{include_path}/{type}.asciidoc[]
@@ -1,17 +1,17 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-neo4j'
4
- s.version = '2.0.4'
4
+ s.version = '2.0.5'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Logstash Output to Neo4j"
7
- s.description = "Output events to Neo4j"
7
+ s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
8
8
  s.authors = ["Pere Urbon-Bayes"]
9
9
  s.email = 'pere.urbon@gmail.com'
10
10
  s.homepage = "http://purbon.com/"
11
11
  s.require_paths = ["lib"]
12
12
 
13
13
  # Files
14
- s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
14
+ s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
15
15
 
16
16
  # Tests
17
17
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.5
5
5
  platform: java
6
6
  authors:
7
7
  - Pere Urbon-Bayes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-24 00:00:00.000000000 Z
11
+ date: 2017-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -94,7 +94,9 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description: Output events to Neo4j
97
+ description: This gem is a Logstash plugin required to be installed on top of the
98
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
99
+ gem is not a stand-alone program
98
100
  email: pere.urbon@gmail.com
99
101
  executables: []
100
102
  extensions: []
@@ -106,6 +108,7 @@ files:
106
108
  - LICENSE
107
109
  - NOTICE.TXT
108
110
  - README.md
111
+ - docs/index.asciidoc
109
112
  - lib/logstash/outputs/neo4j.rb
110
113
  - lib/logstash/outputs/timetree/model.rb
111
114
  - lib/logstash/outputs/timetree/timetree.rb
@@ -135,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
138
  version: '0'
136
139
  requirements: []
137
140
  rubyforge_project:
138
- rubygems_version: 2.4.8
141
+ rubygems_version: 2.6.11
139
142
  signing_key:
140
143
  specification_version: 4
141
144
  summary: Logstash Output to Neo4j