Skip to content

Commit

Permalink
Fix typo in README.md (#1109)
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
rafaelcaricio authored Jan 26, 2024
1 parent cf0b717 commit f81cb9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spectator-ext-aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
`````

Expand Down

0 comments on commit f81cb9a

Please sign in to comment.