Avoid shortcuts in the project name (#2509)
This commit is contained in:
parent
5251a374c1
commit
9c1d42a80b
|
|
@ -198,7 +198,7 @@ The release process is described in [releasing.md](releasing.md).
|
|||
|
||||
Apart from regular unit tests this repository contains integration tests
|
||||
under [test/IntegrationTests](../test/IntegrationTests)
|
||||
as they give the biggest confidence if the auto-instrumentation works properly.
|
||||
as they give the biggest confidence if the automatic instrumentation works properly.
|
||||
|
||||
Each test class has its related test application that can be found
|
||||
under [test/test-applications/integrations](../test/test-applications/integrations)
|
||||
|
|
|
|||
|
|
@ -35,6 +35,6 @@ modify CLR optimizations.
|
|||
|
||||
## Disable OpenTelemetry .NET SDK setup
|
||||
|
||||
| Environment variable | Description | Default value |
|
||||
|----------------------------------------|----------------------------------------------------------------------------------------|------------------------------------------------------|
|
||||
| `OTEL_DOTNET_AUTO_SETUP_SDK` | Controls whether auto-instrumentation should set up OpenTelemetry .NET SDK at startup. | `true` |
|
||||
| Environment variable | Description | Default value |
|
||||
|------------------------------|---------------------------------------------------------------------------------------------|---------------|
|
||||
| `OTEL_DOTNET_AUTO_SETUP_SDK` | Controls whether automatic instrumentation should set up OpenTelemetry .NET SDK at startup. | `true` |
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ else
|
|||
SEPARATOR=":"
|
||||
fi
|
||||
|
||||
# Configure OpenTelemetry .NET Auto-Instrumentation
|
||||
# Configure OpenTelemetry .NET Automatic Instrumentation
|
||||
export OTEL_DOTNET_AUTO_HOME
|
||||
|
||||
# Configure .NET Core Runtime
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<package>
|
||||
<metadata>
|
||||
<id>OpenTelemetry.AutoInstrumentation.Dependencies</id>
|
||||
<description>OpenTelemetry Auto-Instrumentation package with all managed dependencies.</description>
|
||||
<description>OpenTelemetry Automatic Instrumentation package with all managed dependencies.</description>
|
||||
|
||||
<!-- Common properties expected to be defined at build time -->
|
||||
<version>$NuGetPackageVersion$</version>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<package>
|
||||
<metadata>
|
||||
<id>OpenTelemetry.AutoInstrumentation</id>
|
||||
<description>OpenTelemetry Auto-Instrumentation package with all required components to enable automatic instrumentation.</description>
|
||||
<description>OpenTelemetry Automatic Instrumentation package with all required components to enable automatic instrumentation.</description>
|
||||
|
||||
<!-- Common properties expected to be defined at build time -->
|
||||
<version>$NuGetPackageVersion$</version>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ internal class DiagnosticSourceRule : Rule
|
|||
public DiagnosticSourceRule()
|
||||
{
|
||||
Name = "System.Diagnostics.DiagnosticSource Validator";
|
||||
Description = "Ensure that the System.Diagnostics.DiagnosticSource version is not older than the version used by the Auto-Instrumentation";
|
||||
Description = "Ensure that the System.Diagnostics.DiagnosticSource version is not older than the version used by the Automatic Instrumentation";
|
||||
}
|
||||
|
||||
// This constructor is used for test purpose.
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ internal class InstrumentationAssemblyRule : Rule
|
|||
public InstrumentationAssemblyRule()
|
||||
{
|
||||
Name = "Instrumentation Assembly Validator";
|
||||
Description = "Ensure that the version of the OpenTelemetry Instrumentation libraries is not older than the version used by Auto-Instrumentation.";
|
||||
Description = "Ensure that the version of the OpenTelemetry Instrumentation libraries is not older than the version used by Automatic Instrumentation.";
|
||||
}
|
||||
|
||||
internal override bool Evaluate()
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ internal class OpenTelemetrySdkMinimumVersionRule : Rule
|
|||
public OpenTelemetrySdkMinimumVersionRule()
|
||||
{
|
||||
Name = "OpenTelemetry SDK Validator";
|
||||
Description = "Ensure that the OpenTelemetry SDK version is not older than the version used by the Auto-Instrumentation";
|
||||
Description = "Ensure that the OpenTelemetry SDK version is not older than the version used by the Automatic Instrumentation";
|
||||
}
|
||||
|
||||
// This constructor is used for test purpose.
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ internal class StartupHook
|
|||
var ruleEngine = new RuleEngine();
|
||||
if (!ruleEngine.ValidateRules())
|
||||
{
|
||||
Logger.Error("Rule Engine Failure: One or more rules failed validation. Auto-Instrumentation won't be loaded.");
|
||||
Logger.Error("Rule Engine Failure: One or more rules failed validation. Automatic Instrumentation won't be loaded.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ internal static class ConfigurationKeys
|
|||
public const string ProviderPlugins = "OTEL_DOTNET_AUTO_PLUGINS";
|
||||
|
||||
/// <summary>
|
||||
/// Configuration key for controlling whether auto-instrumentation should set up OpenTelemetry .NET SDK at startup.
|
||||
/// Configuration key for controlling whether automatic instrumentation should set up OpenTelemetry .NET SDK at startup.
|
||||
/// </summary>
|
||||
public const string SetupSdk = "OTEL_DOTNET_AUTO_SETUP_SDK";
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public static class Program
|
|||
// test has to be marked as long running, in order to avoid random failures
|
||||
var longRunning = Environment.GetEnvironmentVariable("LONG_RUNNING") == "true";
|
||||
|
||||
// if auto-instrumentation is not injecting sdk
|
||||
// if automatic instrumentation is not injecting sdk
|
||||
// then it's client's code responsibility
|
||||
// to subscribe to all activity sources
|
||||
|
||||
|
|
@ -57,7 +57,7 @@ public static class Program
|
|||
{
|
||||
AppDomain.CurrentDomain.ProcessExit += (sender, eventArgs) =>
|
||||
{
|
||||
// autoinstrumentation disposes created instrumentations during AppDomain.CurrentDomain.ProcessExit
|
||||
// automatic instrumentation disposes created instrumentations during AppDomain.CurrentDomain.ProcessExit
|
||||
// redis instrumentation flushes inside Dispose() which creates activities
|
||||
// delay providers disposal so that there are active listeners
|
||||
// when redis instrumentation attempts to create new activities
|
||||
|
|
|
|||
Loading…
Reference in New Issue