Skip to content

Update README to better reflect current behaviour #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ putProperty("Device", new HashMap<String, String>() {{

Adds a new set of dimensions that will be associated with all metric values.

**WARNING**: Every distinct value for a dimension set will result in a new CloudWatch metric.
**WARNING**: Each dimension set will result in a new CloudWatch metric (even dimension sets with the same values).
If the cardinality of a particular value is expected to be high, you should consider
using `setProperty` instead.

Expand All @@ -113,7 +113,7 @@ putDimensions(DimensionSet.of("Operation", "Aggregator", "DeviceType", "Actuator

Explicitly override all dimensions. This will remove the default dimensions.

**WARNING**: Every distinct value for a dimension set will result in a new CloudWatch metric.
**WARNING**: Each dimension set will result in a new CloudWatch metric (even dimension sets with the same values).
If the cardinality of a particular value is expected to be high, you should consider
using `setProperty` instead.

Expand Down