Skip to content

Commit

Permalink
Update README to better reflect current behaviour
Browse files Browse the repository at this point in the history
There's currently no limitation in the backend for providing multiple dimension sets with the same values. Each set will result in a separate metric.
  • Loading branch information
giancarlokc authored Mar 9, 2022
1 parent 61649ec commit 23c4b9a
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 23c4b9a

Please sign in to comment.