Skip to content

omerl13/neo4s

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

neo4s

Use the power of neo4j over Splunk.

This app allows you to run cypher queries and get the results, all over splunk. This allows you to take advantage of both neo4j's cypher and splunk's SPL.

App page on SplunkBase: https://splunkbase.splunk.com/app/3883/

Examples

Basic usage:

| neo4j host="mygraph.com:7687" query="MATCH (n)-[r]->(m) RETURN n,r,m" | table *

Using neo4j authentication:

| neo4j host="secretgraph.com:7687" username="neo4j" password="neo4j" query="MATCH (n) RETURN n LIMIT 10"

Using different scheme:

| neo4j host="mygraph.com:7687" scheme="neo4j" query="MATCH (n) RETURN n" | table *

Options

  • host (required): Hostname + graph port (port is optional)
  • query (required): Cypher query to run on the graph (can be of any kind)
  • username (optional): Username for authentication
  • password (optional): Password for authentication
  • scheme (optional): Default to bolt

Protocol

The default is bolt, in order to use different scheme in the url, set scheme="<scheme_name>" and use the appropriate port at the end of the host parameter.

Credits