-
Notifications
You must be signed in to change notification settings - Fork 36
Description
When reporting custom metrics, some tags/dimensions are reported by default with the metric; for instance, the lambda name (functionname
).
This means that different lambda functions cannot populate the same metric instance (time series).
This is not such an issue for basic metrics -- max, min, count, etc -- but is a major issue for percentile metrics, since those timeseries cannot be aggregated over (despite datadog's UI allowing this, which is very misleading, but that's another topic).
For instance, if 2 of my lambdas make API calls to some third party service, and I want to aggregate and measure the overall percentile of these calls across all of my lambdas, I simply cannot do it with datadog.
Please add an option to remove some/all builtin tags when reporting custom metrics from Lambda. That is, assuming the Datadog backend supports this.