Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tracer/build/_build/docker/smoke.dotnet-tool.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ ENV DD_TRACE_DEBUG=1
ENV ASPNETCORE_URLS=http://localhost:5000
ENV DD_PROFILING_LOG_DIR=/var/log/datadog/dotnet

# see https://github.com/dotnet/runtime/issues/77973
ENV COMPlus_TieredCompilation=0

# Copy the app across
COPY --from=builder /src/publish /app/.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ ENV DD_TRACE_DEBUG=1
ENV ASPNETCORE_URLS=http://localhost:5000
ENV DD_PROFILING_LOG_DIR=/var/log/datadog/dotnet

# see https://github.com/dotnet/runtime/issues/77973
ENV COMPlus_TieredCompilation=0

# Copy the app across
COPY --from=builder /src/publish /app/.

Expand Down
3 changes: 3 additions & 0 deletions tracer/build/_build/docker/smoke.windows.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ ENV DD_PROFILING_ENABLED=1 \
DD_PROFILING_LOG_DIR="C:\logs" \
ASPNETCORE_URLS=http://localhost:5000

# see https://github.com/dotnet/runtime/issues/77973
ENV COMPlus_TieredCompilation=0

# Copy the app across
COPY --from=builder /src/publish /app/.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ ENV DD_PROFILING_ENABLED=1 \
DD_PROFILING_LOG_DIR="C:\logs" \
ASPNETCORE_URLS=http://localhost:5000

# see https://github.com/dotnet/runtime/issues/77973
ENV COMPlus_TieredCompilation=0

# Copy the app across
COPY --from=builder /src/publish /app/.

Expand Down
3 changes: 3 additions & 0 deletions tracer/build/_build/docker/smoke.windows.nuget.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ ENV CORECLR_ENABLE_PROFILING=1 \
DD_PROFILING_ENABLED=1 \
ASPNETCORE_URLS=http://localhost:5000

# see https://github.com/dotnet/runtime/issues/77973
ENV COMPlus_TieredCompilation=0

# Copy the app across
COPY --from=builder /src/publish /app/.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ ENV DD_PROFILING_ENABLED=1 \
DD_PROFILING_LOG_DIR="C:\logs" \
ASPNETCORE_URLS=http://localhost:5000

# see https://github.com/dotnet/runtime/issues/77973
ENV COMPlus_TieredCompilation=0

# Copy the app across
COPY --from=builder /src/publish /app/.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ public void SetEnvironmentVariables(
{
string profilerEnabled = AutomaticInstrumentationEnabled ? "1" : "0";
environmentVariables["DD_DOTNET_TRACER_HOME"] = MonitoringHome;
environmentVariables["COMPlus_TieredCompilation"] = "0";

// Everything should be using the native loader now
var nativeLoaderPath = GetNativeLoaderPath();
Expand Down