Skip to content

Commit 78f9a4a

Browse files
author
Mark Kuhn
committed
fix typo
1 parent b97dc63 commit 78f9a4a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ The `MetricsLogger` is the interface you will use to publish embedded metrics.
162162

163163
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.
164164

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.
166166

167167
Example:
168168

@@ -196,7 +196,7 @@ Adds a new set of dimensions that will be associated with all metric values.
196196
If the cardinality of a particular value is expected to be high, you should consider
197197
using `setProperty` instead.
198198

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.
200200

201201
Example:
202202

@@ -216,7 +216,7 @@ Explicitly override all dimensions. This will remove the default dimensions unle
216216
If the cardinality of a particular value is expected to be high, you should consider
217217
using `setProperty` instead.
218218

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.
220220

221221
Examples:
222222

@@ -241,7 +241,7 @@ Explicitly clear all custom dimensions. Set `useDefault` to `true` to keep using
241241
- MetricsLogger **SetNamespace**(string logNamespace)
242242

243243
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.
245245

246246
Example:
247247

0 commit comments

Comments
 (0)