Brett McBride
Brett McBride
Can you elaborate on your use case - _why_ do you have the package installed without the extension? And, by avoiding that particular error, aren't other static analysis tools going...
OK, that makes sense. So the issue is not so much that it complains about missing extension, but the way it complains. From memory, the main reason that the check...
@SnakingSappyGoat @xvilo - we've recently added the ability to set `OTEL_PHP_DISABLED_INSTRUMENTATIONS=all`, does that help at all? If not, please report back on whether `error_log` helps per my last comment.
Hello. I think Bob may have been thinking of the symfony auto-instrumentation module, and not the sdk bundle, when he said a stable release was imminent. The sdk bundle needs...
I'd never looked at it before, but the original author of the SDK bundle left an example: https://github.com/opentelemetry-php/otel-sdk-bundle-example-sf5 It starts up and generates traces - so perhaps everything is not...
You are using `OTEL_EXPORTER_OTLP_TRACES_ENDPOINT`, which [per spec](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.28.0/specification/protocol/exporter.md#configuration-options) is used unchanged, so you'll need to append a path of `/opentelemetry.proto.collector.trace.v1.TraceService/Export`. Alternatively, try switching to the `OTEL_EXPORTER_OTLP_ENDPOINT` var with your current value....
> If, on the other hand, I use a generic endpoint as you suggested To use the generic endpoint, you must put it in the `OTEL_EXPORTER_OTLP_ENDPOINT` variable, then a factory...
That's pretty much the pattern I would use, and I don't think there is a more elegant way. It doesn't look quite right visually, though. You detach a scope, not...
@huggsboson DebugScope can now be disabled entirely, since #1205 so with that turned off you won't get the notices.
> How can I do that? You could probably do something as simple as `var_dump(getallheaders())` in your index.php file, we'd be interested in the value for the entry `tracestate`.