Replies: 1 comment 1 reply
-
Hi @hamedprog, I'm not able to reproduce on Ubuntu latest. Also I think you are missing these two options in your -DWITH_EXAMPLES=ON
-DWITH_OTLP_GRPC=ON |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i am compile opentelemetry 1.3 with cmake. using this option:
cmake \ -D BUILD_SHARED_LIBS=ON \ -D BUILD_TESTING=OFF \ -D CMAKE_POSITION_INDEPENDENT_CODE=ON \ -D WITH_JAEGER=OFF \ -D WITH_LOGS_PREVIEW=ON \ -D WITH_OTLP=ON \ .. \
cmake --build . --target all
cmake --install . --config Debug
ldconfig
when I want to run example_otlp_grpc_log, run cant finish and goes to an infinite loop. CPU usage is high and the run can't be finished until I terminate it. whereas other examples run successfully. I used a debugger and found the line that causes a loop.
problem is in this line:
auto exporter = std::unique_ptr<logs_sdk::LogExporter>(new otlp::OtlpGrpcLogExporter(opts));
Beta Was this translation helpful? Give feedback.
All reactions