Skip to content

0.9.0 Add ability to exclude dimensions per-metric

Compare
Choose a tag to compare
@aknysh aknysh released this 10 Oct 14:16

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