You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ The `MetricsLogger` is the interface you will use to publish embedded metrics.
162
162
163
163
Adds a new metric to the current logger context. Multiple metrics using the same key will be appended to an array of values. The Embedded Metric Format supports a maxumum of 100 metrics per key.
164
164
165
-
Metrics must meet CloudWatch Metrics requirements, otherwise it will throw a `InvalidMetricException`. See [MetricDatum](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html) for valid values.
165
+
Metrics must meet CloudWatch Metrics requirements, otherwise a `InvalidMetricException` will be thrown. See [MetricDatum](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html) for valid values.
166
166
167
167
Example:
168
168
@@ -196,7 +196,7 @@ Adds a new set of dimensions that will be associated with all metric values.
196
196
If the cardinality of a particular value is expected to be high, you should consider
197
197
using `setProperty` instead.
198
198
199
-
Dimensions must meet CloudWatch Dimensions requirements, otherwise it will throw a `InvalidDimensionException`. See [Dimensions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Dimension.html) for valid values.
199
+
Dimensions must meet CloudWatch Dimensions requirements, otherwise a `InvalidDimensionException` will be thrown. See [Dimensions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Dimension.html) for valid values.
200
200
201
201
Example:
202
202
@@ -216,7 +216,7 @@ Explicitly override all dimensions. This will remove the default dimensions unle
216
216
If the cardinality of a particular value is expected to be high, you should consider
217
217
using `setProperty` instead.
218
218
219
-
Dimensions must meet CloudWatch Dimensions requirements, otherwise it will throw a `InvalidDimensionException`. See [Dimensions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Dimension.html) for valid values.
219
+
Dimensions must meet CloudWatch Dimensions requirements, otherwise a `InvalidDimensionException` will be thrown. See [Dimensions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Dimension.html) for valid values.
220
220
221
221
Examples:
222
222
@@ -241,7 +241,7 @@ Explicitly clear all custom dimensions. Set `useDefault` to `true` to keep using
Sets the CloudWatch [namespace](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace) that extracted metrics should be published to. If not set, a default value of aws-embedded-metrics will be used.
244
-
Namespaces must meet CloudWatch Namespace requirements, otherwise it will throw a `InvalidNamespaceException`. See [Namespace](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace) for valid values.
244
+
Namespaces must meet CloudWatch Namespace requirements, otherwise a `InvalidNamespaceException` will be thrown. See [Namespace](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace) for valid values.
0 commit comments