dashboard-plugin icon indicating copy to clipboard operation
dashboard-plugin copied to clipboard

The Serverless Framework Dashboard plugin

Results 49 dashboard-plugin issues
Sort by recently updated
recently updated
newest added

# Bug Report ## Description Cannot read property 'X-Amzn-Trace-Id' of null. This is caused by testing a Serverless Framework Pro wrapped Lambda function in API Gateway Console. 1. What did...

question

I'm unable to invoke an httpApi lambda when I deploy it using `sls framework`. However if I simply comment out the framework config (`{org, app}`) in the `serverless.yml` and re-deploy...

bug
help wanted

Hello, I noticed that I cannot use variable system interpolation for `app` and `org` configuration, for example: ```yml org: ${env:SERVERLESS_ORG} app: myapp-${self:custom.vendor.name} service: name: myservice ``` throw an error: ```...

I cannot add a cloudwatch subscription for logs when I am using Enterprise. ``` functions: monitor: # client monitor poller handler: handler.monitor_entry greengrass: subscriptions: - target: "cloud" subject: '/bleh/client/#' logger:...

question

A user reported that Studio failed to run on Windows. From the trace, it looks like the package used to detect if multiple CLI sessions are running isn't working (https://www.npmjs.com/package/find-process)...

bug

Steps: 1. I deployed a service successfully 2. It outputs this message: ``` Serverless: Successfully published your service to the Serverless Dashboard: https://dashboard.serverless.com/tenants/fernando/applications/helloapp/services/flask-api/stage/dev/region/us-east-1 ``` 3. This directs me to the...

enhancement

# Bug Report ## Description 1. What did you do? While testing my config I apparently hit CTRL+C at just the 'right' time. 1. What happened? The zip file of...

bug

# Bug Report ## Description Deployed AWS lambdas in the newest version of Serverless are logging the following error ``` 2020-02-01T20:11:19.016Z 925ef102-35b3-4965-8204-afb519f623cc ERROR Invoke Error { "errorType": "Error", "errorMessage": "ServerlessSDK:...

question

# Bug Report ## Description Lambda function in Python crashes when call boto3 sdb put_attributes 1. What did you do? In a python Lambda function at AWS, when I try...

bug

I am trying to run some code like the following: ``` self.table = dynamodb.Table(os.environ['ITEMS_TABLE']) with self.table.batch_writer() as batch: for item in items: batch.put_item(item) ``` Unfortunately, I get this error from...

bug