yield makeMetric()

in code/log-processing/src/handlers/index.js [85:95]


			yield makeMetric(estimatedCost, 'None', 'EstimatedCost', dimensions, namespace, timestamp)
		}
	} catch (e) {
		log.error('failed to parse Lambda cost metric, skipped...', { event, timestamp })
		return
	}
}

function* tryParseColdStartMetric(event, dimensions, timestamp) {
	try {
		if (event.startsWith('REPORT RequestId:') && event.includes('Init Duration:')) {