Skip to content

Commit 6268478

Browse files
authored
Merge pull request #32 from newrelic/jkeller/release-2.0.0-artifact
Jkeller/release 2.0.0 artifact
2 parents dc009b8 + bcb6683 commit 6268478

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This SDK provides Open Tracing instrumentation for AWS Lambda. Releases for this
44

55
Versioning will have the following format: {majorVersion}.{minorVersion}.{pointVersion}
66

7+
### Supported OpenTracing Versions
8+
9+
* OpenTracing 0.31.0: [com.newrelic.opentracing:java-aws-lambda:1.0.0](https://mvnrepository.com/artifact/com.newrelic.opentracing/java-aws-lambda/1.0.0)
10+
* OpenTracing 0.33.0: [com.newrelic.opentracing:java-aws-lambda:2.0.0](https://mvnrepository.com/artifact/com.newrelic.opentracing/java-aws-lambda/2.0.0)
11+
712
### How it Works
813

914
The SDK provides `TracingRequestHandler` and `TracingRequestStreamHandler` interfaces that extend AWS' Lambda request handlers. When a Lambda function that is using an implementation of either tracing request handler is invoked, the handler will obtain the globally registered OpenTracing [Tracer](https://opentracing.io/docs/overview/tracers/) and create/start an OpenTracing [Span](https://opentracing.io/docs/overview/spans/) to capture timing information and `key:value` pairs ([Tags/Logs](https://opentracing.io/docs/overview/tags-logs-baggage/)) detailing the trace data.
@@ -37,7 +42,7 @@ Below are a list of the collected exception attributes:
3742
You can add the dependency by adding the following to your `build.gradle` file:
3843
```
3944
dependencies {
40-
compile "com.newrelic.opentracing:java-aws-lambda:1.0.0"
45+
compile "com.newrelic.opentracing:java-aws-lambda:2.0.0"
4146
}
4247
```
4348

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = com.newrelic.opentracing
2-
version = 1.0-SNAPSHOT
2+
version = 2.0.0
33

44

55

0 commit comments

Comments
 (0)