From f81cb9a9c4bb560699db1bcd455f74e26b5a6daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Car=C3=ADcio?= Date: Fri, 26 Jan 2024 13:24:55 +0100 Subject: [PATCH] Fix typo in README.md (#1109) I've found a small typo in the readme. Causes importing the wrong class, `com.netflix.springboot.ipc.expiry.SpectatorMetricsCollector`, when the correct would be `com.netflix.spectator.aws.SpectatorMetricCollector`. --- spectator-ext-aws/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spectator-ext-aws/README.md b/spectator-ext-aws/README.md index d5d2613da..ba9173f88 100644 --- a/spectator-ext-aws/README.md +++ b/spectator-ext-aws/README.md @@ -5,7 +5,7 @@ Use Spectator as the Metrics backend for AWS SDK Request Metrics. The spectator-ext-aws module can be plugged into the SDK globally using: `````java -SpectatorMetricsCollector collector = new SpectatorMetricsCollector(Spectator.globalRegistry()); +SpectatorMetricCollector collector = new SpectatorMetricCollector(Spectator.globalRegistry()); AwsSdkMetrics.setMetricCollector(collector); `````