Fernando Guillen

Results 42 comments of Fernando Guillen

I am having this issue with v4.0.0-beta.380. With docker-compose: ``` services: app: build: context: . dockerfile: ./docker/app/DockerFile volumes: - .:/var/www/app ports: - 3000 restart: always depends_on: - db - redis...

@djsisson it works, thanks! This is my docker-compose.yml now: ``` services: app: build: context: . dockerfile: ./docker/app/DockerFile ports: - 3000 restart: always depends_on: - db - redis - sidekiq sidekiq:...

Sadly, the model is ignoring the instructions: > When use "database__describe_tables" function name don't put space between the "tables" arguments randomly. And the error appears and disappears. I can not...

Sure!. I am already using a locally forked version of the gem. For now, the error hasn't occurred again. It is very random. Sometimes, the model puts two tables in...

Duplicated here: https://github.com/collectiveidea/delayed_job/issues/581 Still not solved :/

SO thread: http://stackoverflow.com/q/40360455/316700

Hello @tomash I also would like to test this in my Rails project. Can you share your integration? Especially interested in the lograge integration. Thanks! **UPDATE**: forget it, I see...

Funny behaviour. If I have activated `ENV["OTEL_LOG_LEVEL"] ="debug"`. When a log is exported another DEBUG log is generated like: ``` D, [2025-05-01T22:42:17.912579 #95172] DEBUG -- : Successfully exported 1 log...

hi @tomash: > Why do you use OTEL_LOG_LEVEL instead of application-global log level? As explained in a [previous comment](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/983#issuecomment-2845734587), I can not set `OTEL_LOG_LEVEL=debug` and also activate `OTEL_LOGS_EXPORTER`. Because the...

I am having an issue when loading the logs in Grafana (Rails -> OtelCollector -> Loki -> Grafana). I don't know if it is related to this logger plugin or...