You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ dependencies {
51
51
#### Implement
52
52
1. Implement the `TracingRequestHandler` interface as shown in the [example](#example-usage), defining the Lambda function input and output types that your function requires.
53
53
2. Override the `doHandleRequest` method from the interface and execute your function logic within it. *Note:* If you are refactoring a pre-existing Lambda handler to take advantage of this SDK's tracing request handler make sure that it overrides `doHandleRequest` but not `handleRequest`.
54
-
3. Register the OpenTracing Tracer of your choice.
54
+
3. Register the OpenTracing Tracer of your choice (e.g. New Relic, Jaeger, etc).
55
55
4. See Amazon's documentation on [creating a ZIP deployment package for a Java Lambda function](https://docs.aws.amazon.com/lambda/latest/dg/create-deployment-pkg-zip-java.html)
56
56
5. When creating your Lambda function in AWS Lambda console the handler for the given example would be entered as `com.handler.example.MyLambdaHandler::handleRequest` or just `com.handler.example.MyLambdaHandler`, the latter of which will use `handleRequest` as the handler method by default. *Note:*`handleRequest` is used as the handler entry point as it will call `doHandleRequest`.
@@ -122,7 +122,7 @@ Run the following gradle task:
122
122
```
123
123
124
124
### Contributing
125
-
Full details are available in our CONTRIBUTING file;
125
+
Full details are available in our [CONTRIBUTING.md](https://github.com/aws/aws-lambda-java-libs/blob/master/CONTRIBUTING.md) file.
126
126
127
127
We'd love to get your contributions to improve AWS Lambda OpenTracing Java SDK! Keep in mind when you submit your pull request, you'll need to sign the CLA via the click-through using CLA-Assistant. If you'd like to execute our corporate CLA, or if you have any questions, please drop us an email at open-source@newrelic.com.
0 commit comments