-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# OpenTelemetry Profiles Scouting | ||
|
||
The [`otel-profiles`](https://github.com/signalfx/signalfx-dotnet-tracing/tree/otel-profiles) | ||
branch is used to experiment with [OpenTelemetry Proto Profile](https://github.com/open-telemetry/opentelemetry-proto-profile) | ||
also known as `PProfExtended`. | ||
|
||
## Developing instructions | ||
|
||
Use the [PProfExtendedPrototype.sln](../../PProfExtendedPrototype.sln) to open | ||
the key projects dealing with profiling code. | ||
|
||
Targeted building instructions: | ||
|
||
```Powershell | ||
dir -r .\tracer\src\*.csproj | % { dotnet restore $_ } | ||
.\tracer\build.ps1 BuildTracerHome -Skip Restore | ||
dotnet test -c Release -f net6.0 --filter "AlwaysOnProfiler" .\tracer\test\Datadog.Trace.Tests\Datadog.Trace.Tests.csproj | ||
.\tracer\build.ps1 PublishAlwaysOnProfilerNativeDepWindows | ||
dotnet build -c Release -f net6.0 -p:Platform=x64 .\tracer\test\test-applications\integrations\Samples.AlwaysOnProfiler\Samples.AlwaysOnProfiler.csproj | ||
dotnet build -c Release -f net6.0 .\tracer\test\test-applications\debugger\Samples.Probes\Samples.Probes.csproj | ||
dotnet test -c Release -f net6.0 --filter "AlwaysOnProfiler" .\tracer\test\Datadog.Trace.ClrProfiler.IntegrationTests\Datadog.Trace.ClrProfiler.IntegrationTests.csproj | ||
``` |