Closed
Description
@keegoid-nr found that the "go get" commands in the New Relic documentation site had a short version of the command to install the agent:
go get -u github.com/newrelic/go-agent
This command used to work when the core Go Agent didn't have any dependencies and didn't live in the v3 directory. Here's the replacement:
go get -u github.com/newrelic/go-agent/v3/newrelic
A cursory search shows that two places where we tell customers to do this are here:
- https://docs.newrelic.com/docs/agents/go-agent/installation/install-new-relic-go/
- https://github.com/newrelic/go-agent/blob/master/GUIDE.md
- Test customer-facing installation instructions with this new
go get
command - Update customer-facing installation instructions with new
go get
command