Serverless Enterprise Plugin
This is a Serverless Framework plugin which helps you use advanced monitoring, tracing and governance features via Serverless Enterprise.
The Plugin automatically wraps your functions and instruments them with Serverless Enterprise's monitoring, alerting, logging and tracing features.
Quick-Start
Install the plugin via NPM
npm install @serverless/enterprise-plugin
Then add the plugin to your serverless.yml
, like this:
plugins:
- '@serverless/enterprise-plugin'
Safeguards
To enable Serverless Safeguards, add this to your configuration:
custom:
safeguards: true
Log Collection
For collection logs via Serverless Enterprise, you need to set some configuration in your serverless.yml
custom:
enterprise:
collectLambdaLogs: true
collectApiLogs: true
Development Notes
You can install the latest versions from the master branch by installing the next
tag:
npm install @serverless/enterprise-plugin@next
The project is transpiled with babel, so run npm run build
before installing it
Currently, the serverless-sdk
is within this project. On deployment, this plugin copies a
bundled and compressed version of the serverless-sdk
into your Service package before it's
uploaded.
If you are updating the serverless-sdk
, ensure you run npm run build
to rebuild it too
On the next deployment, the new sdk
will be included.