logstash-input-neo4j 2.0.6-java → 2.0.8-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +6 -0
- data/docs/index.asciidoc +6 -3
- data/logstash-input-neo4j.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f4458f6abf84e98866565b8af6e0bc385966b9235ed061f733d4fdfb6f93dad9
|
4
|
+
data.tar.gz: bc86f663e96af086bf8aa26030112ebf6bb8b15cfc1adf3e300318a2c35c697f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6748bf4809af1370d00f9fd7f7f622c414beecc6bab401e531fff819134e2eb547e94378ec79e65426f16527b0924614149ab6175efb03a9e02068ea56506769
|
7
|
+
data.tar.gz: 7b30e8c8d04bfb77549017b0f0b39602428fca9b14453ef02367f38466b9efe5dea918a3c7118cc50a900350d9593cacb84bafe2f757ff1f5630dd8073dc323b
|
data/CHANGELOG.md
CHANGED
data/docs/index.asciidoc
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
:plugin: neo4j
|
2
2
|
:type: input
|
3
|
+
:default_codec: plain
|
3
4
|
|
4
5
|
///////////////////////////////////////////
|
5
6
|
START - GENERATED VARIABLES, DO NOT EDIT!
|
@@ -23,7 +24,7 @@ include::{include_path}/plugin_header.asciidoc[]
|
|
23
24
|
This plugin gets data from a Neo4j database in predefined intervals. To fetch
|
24
25
|
this data uses a given Cypher query.
|
25
26
|
|
26
|
-
|
27
|
+
===== Usage
|
27
28
|
[source, ruby]
|
28
29
|
input {
|
29
30
|
neo4j {
|
@@ -85,9 +86,11 @@ MATCH (p:`Person`)-->(m:`Movie`) WHERE m.released = 2005 RETURN *
|
|
85
86
|
|
86
87
|
Schedule of when to periodically run statement, in Cron format
|
87
88
|
for example: "* * * * *" (execute query every minute, on the minute).
|
88
|
-
If this variable is not specified then this input will run only once
|
89
|
+
If this variable is not specified, then this input will run only once.
|
89
90
|
|
90
91
|
|
91
92
|
|
92
93
|
[id="plugins-{type}s-{plugin}-common-options"]
|
93
|
-
include::{include_path}/{type}.asciidoc[]
|
94
|
+
include::{include_path}/{type}.asciidoc[]
|
95
|
+
|
96
|
+
:default_codec!:
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-neo4j'
|
4
|
-
s.version = '2.0.
|
4
|
+
s.version = '2.0.8'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Logstash Input for Neo4j"
|
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/logstash-plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-neo4j
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.8
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Pere Urbon-Bayes
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2019-04-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -95,7 +95,9 @@ dependencies:
|
|
95
95
|
- - ">="
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: '0'
|
98
|
-
description: This gem is a Logstash plugin required to be installed on top of the
|
98
|
+
description: This gem is a Logstash plugin required to be installed on top of the
|
99
|
+
Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
|
100
|
+
gem is not a stand-alone program
|
99
101
|
email: pere.urbon@gmail.com
|
100
102
|
executables: []
|
101
103
|
extensions: []
|
@@ -136,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
138
|
version: '0'
|
137
139
|
requirements: []
|
138
140
|
rubyforge_project:
|
139
|
-
rubygems_version: 2.
|
141
|
+
rubygems_version: 2.6.13
|
140
142
|
signing_key:
|
141
143
|
specification_version: 4
|
142
144
|
summary: Logstash Input for Neo4j
|