cloudwatch-metrics
This middleware hydrates lambda's context.metrics
property with an instance of MetricLogger. This instance can be used to easily generate custom metrics from Lambda functions without requiring custom batching code, making blocking network requests or relying on 3rd party software.
Metrics collected with this logger are then available for querying within AWS CloudWatch Log Insights
You can explore all the MetricLogger APIs following aws-embedded-metrics documentation.
Install
To install this middleware you can use NPM:
- npm
- Yarn
- pnpm
npm install --save @middy/cloudwatch-metrics
yarn add @middy/cloudwatch-metrics
pnpm add @middy/cloudwatch-metrics
Options
namespace
(string
) (optional): Defaults toaws-embedded-metrics
. Sets the CloudWatch namespace that extracted metrics should be published to.dimensions
(Record<String, String> | Record<String, String>[]
) (optional): Explicitly overrides all dimensions. This will remove the default dimensions. You can provide an empty array to record all metrics without dimensions. For dimensions defaults and configuration see the aws-embedded-metrics docs.
Sample usage
const middy = require('@middy/core')
const cloudwatchMetrics = require('@middy/cloudwatch-metrics')
const lambdaHandler = (event, context) => {
context.metrics.putMetric('ProcessingLatency', 100, 'Milliseconds')
context.metrics.setProperty(
'RequestId',
'422b1569-16f6-4a03-b8f0-fe3fd9b100f8'
)
}
export const handler = middy()
.use(
cloudwatchMetrics({
namespace: 'myAppliction',
dimensions: [{ Action: 'Buy' }]
})
)
.handler(lambdaHandler)