Update setup guide since go get
is deprecated / no longer supported and will throw an error
#1598
Labels
go get
is deprecated / no longer supported and will throw an error
#1598
Describe the bug
The setup guide instructs users to install the Elastic APM Go agent package using
go get
:However,
go get
is deprecated since Go version >= 1.17 (c.f Deprecation of 'go get' for installing executables) and will throw an error if users try to use this command to install the APM Go agent package (c.f below).To Reproduce
go get -u go.elastic.co/apm/v2
and observe the below error:Expected behavior
Update the setup guide to use
go install go.elastic.co/apm/v2@latest
insteadThe text was updated successfully, but these errors were encountered: