Aaron Mangum

Results 6 comments of Aaron Mangum

```shell $ docker run -d --name fake-gcs-server -p 4443:4443 fsouza/fake-gcs-server ``` ```python # roughly verbatim from examples/python/python.py from google.auth.credentials import AnonymousCredentials from google.cloud import storage client = storage.Client( credentials=AnonymousCredentials(), project="test",...

Thanks for checking. It does work after doing that. Might want to update documentation to mention env var or other options in order to get things working.

Should be fine On Tue, Oct 5, 2021 at 10:57 AM francisco souza ***@***.***> wrote: > Do you think that replicating the comment at the top of the Go example...

The container exits with 139. These are the logs ``` [2021-08-10 20:59:12 +0000] [8] [INFO] Starting gunicorn 20.1.0 [2021-08-10 20:59:12 +0000] [8] [INFO] Listening at: http://0.0.0.0:8000 (8) [2021-08-10 20:59:12 +0000]...

Immediate difference that I see is that the message "Queue is full, likely spans will be dropped." occurs twice with automatic instrumentation, but only once with manual instrumentation.

This only happens with auto instrumentation, not manual. I set OTEL_BSP_MAX_QUEUE_SIZE=999999 and segfault still occurs. No change in the amount of time it takes. The only difference is that the...