docs/sf/guides/observability/dashboard.md
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.
To enable the Serverless Dashboard for your service:
app and org top-level properties in your serverless.yml file if they are not already specified.observability property to the stages block in your serverless.yml file and use dashboard or true value 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.