Serverless Dashboard
The Serverless Dashboard is a powerful tool that provides insights into the behavior, performance, and health of your serverless applications. It allows you to monitor and troubleshoot your services, set up alerts, and view logs.
Enabling Serverless Dashboard
To enable the Serverless Dashboard for your service:
- If you don't already have a Serverless Framework account, create a new account at https://app.serverless.com.
- Add the
appandorgtop-level properties in yourserverless.ymlfile if they are not already specified. - Add the
observabilityproperty to thestagesblock in yourserverless.ymlfile and usedashboardortruevalue as the provider.
# Ensure these properties are present to connect to the Dashboard
org: my-org
app: my-app
# Control observability instrumentation settings under stages
stages:
prod:
observability: true # or observability: dashboard
To learn more about the Serverless Dashboard, visit the Serverless Dashboard Monitoring & Observability documentation.