dashboard icon indicating copy to clipboard operation
dashboard copied to clipboard

Results 4 dashboard issues
Sort by recently updated
recently updated
newest added

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...