New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@serverless/dashboard-plugin

Package Overview
Dependencies
Maintainers
3
Versions
219
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@serverless/dashboard-plugin

The Serverless Dashboard plugin

7.2.3
unpublished
latest
Source
npm
Version published
Weekly downloads
894K
1.92%
Maintainers
3
Weekly downloads
 
Created

What is @serverless/dashboard-plugin?

@serverless/dashboard-plugin is a plugin for the Serverless Framework that provides enhanced monitoring, troubleshooting, and management capabilities for serverless applications. It integrates with the Serverless Dashboard to offer real-time insights, alerts, and deployment tracking.

What are @serverless/dashboard-plugin's main functionalities?

Monitoring and Alerts

This feature allows you to set up monitoring and alerts for your serverless applications. The code sample demonstrates how to configure an alert for a high error rate.

module.exports = {
  service: 'my-service',
  frameworkVersion: '2',
  plugins: ['@serverless/dashboard-plugin'],
  custom: {
    dashboard: {
      org: 'my-org',
      app: 'my-app',
      alerts: [
        {
          name: 'High Error Rate',
          conditions: {
            errorRate: {
              threshold: 5,
              period: 300
            }
          }
        }
      ]
    }
  }
};

Deployment Tracking

This feature provides deployment tracking capabilities, allowing you to monitor the status and history of your deployments. The code sample shows the basic configuration needed to enable deployment tracking.

module.exports = {
  service: 'my-service',
  frameworkVersion: '2',
  plugins: ['@serverless/dashboard-plugin'],
  custom: {
    dashboard: {
      org: 'my-org',
      app: 'my-app'
    }
  }
};

Real-time Insights

This feature offers real-time insights into the performance and health of your serverless applications. The code sample demonstrates the basic setup to enable real-time insights.

module.exports = {
  service: 'my-service',
  frameworkVersion: '2',
  plugins: ['@serverless/dashboard-plugin'],
  custom: {
    dashboard: {
      org: 'my-org',
      app: 'my-app'
    }
  }
};

Other packages similar to @serverless/dashboard-plugin

FAQs

Package last updated on 01 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts