0.9.0 Add ability to exclude dimensions per-metric
what
- Add ability to exclude dimensions per-metric
why
- This feature allows users to exclude a set of dimensions on a per-metric basis. This attempts to deal with the 10 dimensions/metric constraint in CloudWatch, where sometimes the valuable dimensions are left out.
The format is:
EXCLUDE_DIMENSIONS_FOR_METRICS=metric_glob*=dim1,dim2;metric2_*=dim3;
# will exclude 'dim1' and 'dim2' from any metric matching 'metric_glob*'
# and 'dim3' from any metric matching 'metric2_*'
related
- Closes #27