diff --git a/README.md b/README.md
index a82a03d10..71d5ca616 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,11 @@ Powertools is available in Maven Central. You can use your favourite dependency
powertools-logging0.3.0-beta
+
+ software.amazon.lambda
+ powertools-metrics
+ 0.3.0-beta
+
...
```
@@ -51,6 +56,10 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
software.amazon.lambdapowertools-tracing
+
+ software.amazon.lambda
+ powertools-metrics
+
diff --git a/docs/content/core/metrics.mdx b/docs/content/core/metrics.mdx
index f5df760ee..f9f33078a 100644
--- a/docs/content/core/metrics.mdx
+++ b/docs/content/core/metrics.mdx
@@ -65,7 +65,7 @@ You can initialize Metrics anywhere in your code as many times as you need - It'
You can create metrics using `putMetric`, and manually create dimensions for all your aggregate metrics using `add_dimension`.
-```java:title=app.py
+```java:title=Handler.java
public class PowertoolsMetricsEnabledHandler implements RequestHandler