This is a cache of https://www.elastic.co/guide/en/apm/agent/go/current/troubleshooting.html. It is a snapshot of the page at 2024-08-28T01:02:21.113+0000.
Troubleshooting | APM Go Agent Reference [<strong>2</strong>.x] | Elastic

Troubleshooting

edit

Is something not working as expected? Don217;t worry if you can217;t figure out what the problem is; we’re here to help! First, ensure your app is compatible with the agent217;s supported technologies.

If you217;re an existing Elastic customer with a support contract, please create a ticket in the Elastic Support portal. Other users can post in the APM discuss forum.

Please upload your complete debug logs to a service like GitHub Gist so that we can analyze the problem. Logs should include everything from when the application starts up until the first request executes. Instructions for enabling logging are below.

Logging

edit

Agent logs are critical to the debugging process. By default, this logging is disabled. To enable it, set a log output file with ELASTIC_APM_LOG_FILE. Alternatively, if you217;re using Docker or Kubernetes and are okay with mixing agent and application logs, you can set ELASTIC_APM_LOG_FILE=stderr.

The agent does not rotate log files. Log rotation must be handled externally.

With logging enabled, use ELASTIC_APM_LOG_LEVEL to increase the granularity of the agent217;s logging. For example: ELASTIC_APM_LOG_LEVEL=debug.

Be sure to execute a few requests to your application before posting your log files. Each request should add lines similar to these in the logs:

{"level":"debug","time":"2020-07-23T11:46:32+08:00","message":"sent request with 100 transactions, 0 spans, 0 errors, 0 metricsets"}

If you don217;t see lines like these, it217;s likely that you haven217;t instrumented your application correctly.

Disable the Agent

edit

In the unlikely event the agent causes disruptions to a production application, you can disable the agent while you troubleshoot.

If you have access to dynamic configuration, you can disable the recording of events by setting ELASTIC_APM_RECORDING to false. When changed at runtime from a supported source, there217;s no need to restart your application.

If that doesn217;t work, or you don217;t have access to dynamic configuration, you can disable the agent by setting ELASTIC_APM_ACTIVE to false. Restart your application for the changes to apply.