Skip to content

Commit 3c56e17

Browse files
committed
docs: updating the README.md for the metrics module.
1 parent 0f7d6fc commit 3c56e17

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![aws provider](https://img.shields.io/badge/provider-AWS-orange?logo=amazon-aws&color=ff9900)
44

5-
A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously(Coming soon!) easier.
5+
A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier.
66

77
**[📜Documentation](https://awslabs.github.io/aws-lambda-powertools-java/)** | **[Feature request](https://github.com/awslabs/aws-lambda-powertools-java/issues/new?assignees=&labels=feature-request%2C+triage&template=feature_request.md&title=)** | **[🐛Bug Report](https://github.com/awslabs/aws-lambda-powertools-java/issues/new?assignees=&labels=bug%2C+triage&template=bug_report.md&title=)** | **[Detailed blog post](https://aws.amazon.com/blogs/opensource/simplifying-serverless-best-practices-with-lambda-powertools/)**
88

@@ -24,6 +24,11 @@ Powertools is available in Maven Central. You can use your favourite dependency
2424
<artifactId>powertools-logging</artifactId>
2525
<version>0.2.0-beta</version>
2626
</dependency>
27+
<dependency>
28+
<groupId>software.amazon.lambda</groupId>
29+
<artifactId>powertools-metrics</artifactId>
30+
<version>0.2.0-beta</version>
31+
</dependency>
2732
...
2833
</dependencies>
2934
```
@@ -51,6 +56,10 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
5156
<groupId>software.amazon.lambda</groupId>
5257
<artifactId>powertools-tracing</artifactId>
5358
</aspectLibrary>
59+
<aspectLibrary>
60+
<groupId>software.amazon.lambda</groupId>
61+
<artifactId>powertools-metrics</artifactId>
62+
</aspectLibrary>
5463
</aspectLibraries>
5564
</configuration>
5665
<executions>

0 commit comments

Comments
 (0)