Open iblancasa opened 4 months ago
I got this too,is there any solution about this?
@dartagnanli I was able to make it work (more or less) reducing the number of objects in the binary.
@iblancasa that's interesting, could you share more of what you mean by that and how you did it?
As you can see, I was trying to inject the instrumentation in the opentelemetry-collector
. I just removed all the receiver/exporters except the otlp
receiver.
Long time without working on this but I think all the probes were being loaded in memory and that was a problem..
Describe the bug
I'm trying to autoinstrument the OpenTelemetry Collector. I tried copying the binary from the
otel/opentelemetry-collector
image to another based onfedora
.When I try to instrument this container image, the container is
OOMKilled
:When I build my own distribution with only the
otlp
receiver anddebug
exporter, the instrumentation progresses a little bit more but it is alsoOOMKilled
. This is the log I get:Expected behavior
The container should be instrumented without any error.