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
To create an aggregate metric across all dimensions, you can use an empty `DimensionsSet`:
132
135
136
+
```java
137
+
setDimensions(
138
+
DimensionSet.of(
139
+
"Operation", "Aggregator",
140
+
"DeviceType", "Actuator"),
141
+
newDimensionSet()
142
+
)
133
143
```
134
144
145
+
135
146
- MetricsLogger **setNamespace**(String value)
136
147
137
148
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.
0 commit comments