This feature allows users to exclude a set of dimensions on a per-metric basis. It should be easy enough to add a dimensions whitelist as well, which seems to be in the style of this application, which I'd be happy to add as well.
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_*'
Closes #27
This feature allows users to exclude a set of dimensions on a per-metric basis. It should be easy enough to add a dimensions whitelist as well, which seems to be in the style of this application, which I'd be happy to add as well.
This attempts to deal with the 10 dimensions/metric constraint in Cloudwatch, where sometimes the valuable dimensions are left out.
The format is: