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
**NameSpace**: Overrides the CloudWatch [namespace](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace). If not set, a default value of aws-embedded-metrics will be used.
235
+
236
+
Requirements:
237
+
238
+
- Name Length 1-512 characters
239
+
- Name must be ASCII characters only
240
+
241
+
Example:
242
+
243
+
```py
244
+
# in process
245
+
from aws_embedded_metrics.config import get_config
246
+
Config = get_config()
247
+
Config.namespace ="MyApplication";
248
+
249
+
# environment
250
+
AWS_EMF_NAMESPACE= MyApplication;
251
+
```
252
+
234
253
## Examples
235
254
236
255
Check out the [examples](https://github.com/awslabs/aws-embedded-metrics-python/tree/master/examples) directory to get started.
0 commit comments