We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f21e4 commit c04d253Copy full SHA for c04d253
src/metrics/enhanced-metrics.ts
@@ -56,7 +56,7 @@ export function getEnhancedMetricTags(context?: Context): string[] {
56
if (context.invokedFunctionArn) {
57
arnTags = parseTagsFromARN(context.invokedFunctionArn, context.functionVersion);
58
}
59
- tags = [...arnTags, `memorysize:${context.memoryLimitInMB}`];
+ tags.push(...arnTags, `memorysize:${context.memoryLimitInMB}`);
60
61
62
tags.push(...getSandboxInitTags(), getVersionTag());
0 commit comments