-
Notifications
You must be signed in to change notification settings - Fork 66
feat: Environment variable naming consistency #2812
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Environment variable naming consistency #2812
Conversation
chore: Update Profiler NuGet Package Reference to v10.31.0.12. Co-authored-by: tippmar-nr <120425148+tippmar-nr@users.noreply.github.com>
…s may be removed in a future release
chore: Update Profiler NuGet Package Reference to v10.31.0.19. Co-authored-by: tippmar-nr <120425148+tippmar-nr@users.noreply.github.com>
tests/Agent/IntegrationTests/ContainerIntegrationTests/Applications/ContainerApplication.cs
Outdated
Show resolved
Hide resolved
tests/Agent/IntegrationTests/IntegrationTestHelpers/RemoteServiceFixtures/AzureFuncTool.cs
Outdated
Show resolved
Hide resolved
tests/Agent/IntegrationTests/IntegrationTestHelpers/RemoteServiceFixtures/RemoteService.cs
Outdated
Show resolved
Hide resolved
.../Agent/IntegrationTests/IntegrationTestHelpers/RemoteServiceFixtures/RemoteWebApplication.cs
Outdated
Show resolved
Hide resolved
…tions/ContainerApplication.cs
…iceFixtures/AzureFuncTool.cs
…iceFixtures/RemoteService.cs
…iceFixtures/RemoteWebApplication.cs
chore: Update Profiler NuGet Package Reference to v10.31.0.27. Co-authored-by: tippmar-nr <120425148+tippmar-nr@users.noreply.github.com>
…warning from profiler.
chore: Update Profiler NuGet Package Reference to v10.31.0.29. Co-authored-by: tippmar-nr <120425148+tippmar-nr@users.noreply.github.com>
…to migrate in old NEWRELIC_HOME folder
When it's time to merge, remember that Notices have to use the |
…ariable-naming-consistency
chore: Update Profiler NuGet Package Reference to v10.31.0.36. Co-authored-by: tippmar-nr <120425148+tippmar-nr@users.noreply.github.com>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2812 +/- ##
==========================================
+ Coverage 81.22% 81.32% +0.10%
==========================================
Files 460 460
Lines 29225 29239 +14
Branches 3223 3231 +8
==========================================
+ Hits 23737 23779 +42
+ Misses 4701 4668 -33
- Partials 787 792 +5
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Description
Unifies all environment variable names used by the .NET agent so that they start with
NEW_RELIC_
everywhere.The variable names that changed are as follows:
CORECLR_NEWRELIC_HOME
CORECLR_NEW_RELIC_HOME
NEWRELIC_FORCE_PROFILING
NEW_RELIC_FORCE_PROFILING
NEWRELIC_HOME
NEW_RELIC_HOME
NEWRELIC_INSTALL_PATH
NEW_RELIC_INSTALL_PATH
NEWRELIC_LICENSEKEY
NEW_RELIC_LICENSE_KEY
NEWRELIC_LOG_DIRECTORY
NEW_RELIC_LOG_DIRECTORY
NEWRELIC_LOG_LEVEL
NEW_RELIC_LOG_LEVEL
NEWRELIC_PROFILER_LOG_DIRECTORY
NEW_RELIC_PROFILER_LOG_DIRECTORY
NEWRELIC_AGENT_VERSION_OVERRIDE
NEW_RELIC_AGENT_VERSION_OVERRIDE
Notice (Future breaking change):
The variables in the Old Name column above are still supported with this change, but may be removed in a future major version release of the .NET agent. Users are encouraged to update their installation to use the new names as soon as possible.
Resolves #718