27 Jul 2020 03:18 PM
I have an environment in helm Kubernetes. I'm using OneAgent Operator and
Dynatrace OneAgent is not able to activate deep monitoring for this Go process because Monitoring of statically linked Go programs that do not load libc is not supported.
what should i do or check?
Solved! Go to Solution.
28 Jul 2020 06:39 AM
Hi Jonas,
Please refer to the official docs page.
This is a requirement that comes with Linux systems. The application binary must be dynamically linked. An example workaround to achieve this is by using the following flags when building the application:
-ldflags '-linkmode=external'
This will enforce dynamic linking.
Best regards,
Radu