dashboard
dashboard copied to clipboard
After setting up instrumentation in the new serverless dashboard, all of our API endpoints return a `500 - Internal Server Error` code. Peeking into the logs, this is caused by...
I'm trying to use Sentry alongside Serverless and having a pretty bad time. Getting flaky failures when calling sentry_sdk.init: ``` [ERROR] KeyError: 'sentry_sdk.integrations.asgi' Traceback (most recent call last): File "/opt/python/serverless_aws_lambda_sdk/instrument/__init__.py",...
`logging.error`, `.warning` etc functions let you [pass in basically anything](https://docs.python.org/3/howto/logging.html#arbitrary-object-messages). For example, I can pass in an Exception here: ```python try: raise ValueError('test') except Exception as e: logging.warning(e) ``` ```...
Hello, I've run into the following error when developing an application w/`slack_bolt`: ```json { "message": "Cannot set tag: Tag http.status_code is already set", "name": "DuplicateTraceSpanName", "stacktrace": "Traceback (most recent call...
### Description We are encountering a `ModuleNotFoundError` during the execution of an AWS Lambda function configured through Serverless. The error suggests that the function's handler module cannot be located or...
The dependency [js-regex](https://pypi.org/project/serverless-sdk/) is no longer compatible with Python 3.13.`re.TEMPLATE` and `re.template()` were [removed](https://docs.python.org/3/whatsnew/3.13.html#id5) in Python 3.13, and were ([poorly](https://github.com/python/cpython/issues/92728)) deprecated a number of years ago. The dependency also hasn't...
Hello, I'm not sure if this it the correct repo, so please let me know if it's not and I'll open in the correct one. We're seeing the following vulnerability...
We are migrating to Python 3.12 in order to take advantage of Lambda snapStart, but so far it is not supported by the serverless framework dashboard if we want to...
I'll start off with preface that I am not sure if this is correct place to create this ticket, but I've messaged support with no success month ago. Is there...