OpenTracing Instrumentation for Neo4j Driver


License

License

Categories

Categories

Neo4J Data Databases
GroupId

GroupId

io.opentracing.contrib
ArtifactId

ArtifactId

opentracing-neo4j-driver
Last Version

Last Version

0.2.2
Release Date

Release Date

Type

Type

jar
Description

Description

OpenTracing Instrumentation for Neo4j Driver
OpenTracing Instrumentation for Neo4j Driver
Project URL

Project URL

https://github.com/opentracing-contrib/java-neo4j-driver
Source Code Management

Source Code Management

http://github.com/opentracing-contrib/java-neo4j-driver

Download opentracing-neo4j-driver

How to add to project

<!-- https://jarcasting.com/artifacts/io.opentracing.contrib/opentracing-neo4j-driver/ -->
<dependency>
    <groupId>io.opentracing.contrib</groupId>
    <artifactId>opentracing-neo4j-driver</artifactId>
    <version>0.2.2</version>
</dependency>
// https://jarcasting.com/artifacts/io.opentracing.contrib/opentracing-neo4j-driver/
implementation 'io.opentracing.contrib:opentracing-neo4j-driver:0.2.2'
// https://jarcasting.com/artifacts/io.opentracing.contrib/opentracing-neo4j-driver/
implementation ("io.opentracing.contrib:opentracing-neo4j-driver:0.2.2")
'io.opentracing.contrib:opentracing-neo4j-driver:jar:0.2.2'
<dependency org="io.opentracing.contrib" name="opentracing-neo4j-driver" rev="0.2.2">
  <artifact name="opentracing-neo4j-driver" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.opentracing.contrib', module='opentracing-neo4j-driver', version='0.2.2')
)
libraryDependencies += "io.opentracing.contrib" % "opentracing-neo4j-driver" % "0.2.2"
[io.opentracing.contrib/opentracing-neo4j-driver "0.2.2"]

Dependencies

compile (1)

Group / Artifact Type Version
io.opentracing : opentracing-api jar 0.33.0

provided (1)

Group / Artifact Type Version
org.neo4j.driver : neo4j-java-driver jar 4.2.0

test (8)

Group / Artifact Type Version
org.testcontainers : testcontainers jar 1.15.1
org.testcontainers : neo4j jar 1.15.1
io.opentracing : opentracing-mock jar 0.33.0
org.awaitility : awaitility jar 4.0.0
junit : junit jar 4.13.1
org.slf4j : slf4j-api jar 1.7.30
org.slf4j : slf4j-simple jar 1.7.30
io.projectreactor : reactor-test jar 3.4.2

Project Modules

There are no modules declared in this project.

Build Status Coverage Status Released Version Apache-2.0 license

OpenTracing Neo4j Driver 4.x Instrumentation

OpenTracing instrumentation for Neo4j Driver 4.x.

Installation

pom.xml

<dependency>
    <groupId>io.opentracing.contrib</groupId>
    <artifactId>opentracing-neo4j-driver</artifactId>
    <version>VERSION</version>
</dependency>

Usage

// Instantiate tracer
Tracer tracer = ...

// Decorate Neo4j Driver with Tracing Driver
Driver driver = new TracingDriver(GraphDatabase.driver(...), tracer);

OGM

// Create BoltDriver from decorated neo4j driver:
Driver boltDriver = new BoltDriver(new TracingDriver(GraphDatabase.driver(...), tracer));

// Create Session Factory
SessionFactory sessionFactory = new SessionFactory(boltDriver);

License

Apache 2.0 License.

io.opentracing.contrib

3rd-Party OpenTracing API Contributions

3rd-party contributions that use OpenTracing. **The repositories in this org are *not* affiliated with the CNCF.**

Versions

Version
0.2.2
0.2.1
0.2.0
0.1.0
0.0.2
0.0.1