Open
Description
Summary
Currently, I'm using Github Actions to indicate to new relic when I release a new version of my app, but this does not work well when there are multiple versions of my application deployed, especially during rolling deployments, or canary deployments.
Desired Behaviour
My service's version information is already baked into my binaries, it would be great if I could so something like
newrelic.NewApplication(newrelic.ConfigAppVersion(version.String))
This is basically how datadog does it, and is much better when tracking down version-specific issues across multiple running versions of the app.