Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldraper committed Mar 6, 2017
0 parents commit 1bec3ac
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea/

target/
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Opentracing thread-local propogation

[![Build Status](https://travis-ci.org/lucidsoftware/opentracing-thread-context.svg?branch=master)](https://travis-ci.org/lucidsoftware/opentracing-thread-context)
![Maven Version](https://img.shields.io/maven-central/v/com.lucidchart/opentracing-thread-context.svg)

In-process thread-local propagation of spans.

## Usage

```java
import io.opentracing.Span;
import io.opentracing.threadcontext.ThreadContextSpan;

Span span = ...
ThreadContextSpan.set(span)
ThreadContextSpan.get();
```

0 comments on commit 1bec3ac

Please sign in to comment.