On all platforms, the minimum requirements are:
- Visual Studio 2022 (17.4)
or higher
- Workloads with the following components:
- ASP.NET and web development
- .NET desktop development
- Desktop development with C++
- Individual components:
- MSVC v142 - Visual Studio 2019 C++ x64/x86 build tools (version 14.29)
- Workloads with the following components:
Microsoft provides evaluation developer VMs with Windows and Visual Studio preinstalled.
- Run:
xcode-select --install
- cmake, make, gcc, clang, clang++
Run:
`./dev/codespaces-init.sh`
This repository uses Nuke for build automation.
Support plugins are available for:
- JetBrains ReSharper https://nuke.build/resharper
- JetBrains Rider https://nuke.build/rider
- Microsoft VisualStudio https://nuke.build/visualstudio
- Microsoft VSCode https://nuke.build/vscode
Restore dotnet tools to prepare build tools for solution.
This installs the dotnet nuke
tool locally.
dotnet tool restore
To see a list of possible targets and configurations run:
dotnet nuke --help
To build, run:
dotnet nuke
The main build artifacts are in bin/tracer-home
.
Clean your repository by running:
git clean -fXd
If you made changes to the Markdown documents (*.md
files), ensure that lint
tool and spellcheck passed without any issues by executing:
nuke InstallDocumentationTools ValidateDocumentation
Some issues can be automatically fixed by:
nuke MarkdownLintFix
All MarkdownLint tasks require Node.js installed locally.
integrations.json
can be regenerated using
Integrations Json Generator
project.
To update this file you should
- Modify bytecode instrumentation (especially
InstrumentMethodAttribute
s). - Execute
nuke BuildTracer
to generate auto instrumentation library - source for the generator. - Execute
Integrations Json Generator
. - Execute
nuke BuildTracer
to apply changes inintegrations.json
.
Remember to commit changes in integrations.json
.
The dev/docker-compose.yaml
contains
configuration for running the OpenTelemetry Collector and Jaeger.
You can run the services using:
docker-compose -f dev/docker-compose.yaml up
The following Web UI endpoints are exposed:
- http://localhost:16686/search: Collected traces
- http://localhost:8889/metrics: Collected metrics
- http://localhost:13133: Collector health status
You can also find the exported telemetry in dev/log
directory.
Warning: Make sure to build and prepare the test environment beforehand.
You can use dev/envvars.sh
to export profiler
environmental variables to your current shell session.
You must run it from the root of this repository.
For example:
. ./dev/envvars.sh
./test/test-applications/integrations/TestApplication.Smoke/bin/x64/Release/net7.0/TestApplication.Smoke
You can use the example playground application to test the local changes.
The release process is described in releasing.md.
Apart from regular unit tests this repository contains integration tests under test/IntegrationTests as they give the biggest confidence if the auto-instrumentation works properly.
Each test class has its related test application that can be found
under test/test-applications/integrations
Each library instrumentation has its own test class.
Other features are tested via SmokeTests
class or have its own test class
if a dedicated test application is needed.
Currently, the strategy is to test the library instrumentations
against its lowest supported, but not vulnerable, version.
The pull requests created by @dependabot with do NOT merge
label
are used to test against higher library versions when they are released.
TestApplication.AspNet.NetFramework
is an exception to this strategy as it would not work well, because of multiple dependent packages.TestApplication.AspNet.NetFramework
references the latest versions of the ASP.NET packages.
To verify that a test is not flaky, you can manually trigger the verify-test.yml GitHub workflow.
-
./build.sh clr+libs
-
PATH="$PATH:$PWD/artifacts/bin/coreclr/Linux.x64.Debug/corerun" export CORE_LIBRARIES="$PWD/artifacts/bin/runtime/net6.0-Linux-Debug-x64" corerun ~/repos/opentelemetry-dotnet-instrumentation/examples/ConsoleApp/bin/Debug/net6.0/Examples.ConsoleApp.dll
-
The following example shows how you can debug if the profiler is attached:
~/repos/opentelemetry-dotnet-instrumentation$ source dev/envvars.sh ~/repos/opentelemetry-dotnet-instrumentation$ cd ../runtime/ ~/repos/runtime$ lldb -- ./artifacts/bin/coreclr/Linux.x64.Debug/corerun ~/repos/opentelemetry-dotnet-instrumentation/examples/ConsoleApp/bin/Debug/net6.0/Examples.ConsoleApp.dll (lldb) target create "./artifacts/bin/coreclr/Linux.x64.Debug/corerun" Current executable set to '/home/user/repos/runtime/artifacts/bin/coreclr/Linux.x64.Debug/corerun' (x86_64). (lldb) settings set -- target.run-args "/home/user/repos/opentelemetry-dotnet-instrumentation/examples/ConsoleApp/bin/Debug/net6.0/Examples.ConsoleApp.dll" (lldb) process launch -s Process 1905 launched: '/home/user/repos/runtime/artifacts/bin/coreclr/Linux.x64.Debug/corerun' (x86_64) (lldb) process handle -s false SIGUSR1 SIGUSR2 NAME PASS STOP NOTIFY =========== ===== ===== ====== SIGUSR1 true false true SIGUSR2 true false true (lldb) b EEToProfInterfaceImpl::CreateProfiler Breakpoint 1: no locations (pending). WARNING: Unable to resolve breakpoint to any actual locations. (lldb) s Process 1905 stopped * thread #1, name = 'corerun', stop reason = instruction step into frame #0: 0x00007ffff7fd0103 ld-2.31.so -> 0x7ffff7fd0103: callq 0x7ffff7fd0df0 ; ___lldb_unnamed_symbol18$$ld-2.31.so 0x7ffff7fd0108: movq %rax, %r12 0x7ffff7fd010b: movl 0x2c4e7(%rip), %eax 0x7ffff7fd0111: popq %rdx (lldb) c Process 1905 resuming 1 location added to breakpoint 1 Process 1905 stopped * thread #1, name = 'corerun', stop reason = breakpoint 1.1 frame #0: 0x00007ffff7050ed2 libcoreclr.so`EEToProfInterfaceImpl::CreateProfiler(this=0x00005555555f7690, pClsid=0x00007fffffffce88, wszClsid=u"{918728DD-259F-4A6A-AC2B-B85E1B658318}", wszProfileDLL=u"/home/user/repos/opentelemetry-dotnet-instrumentation/bin/tracer-home/OpenTelemetry.AutoInstrumentation.Native.so") at eetoprofinterfaceimpl.cpp:633:5 630 CONTRACTL_END; 631 632 // Always called before Thread created. -> 633 _ASSERTE(GetThreadNULLOk() == NULL); 634 635 // Try and CoCreate the registered profiler 636 ReleaseHolder<ICorProfilerCallback2> pCallback2; (lldb)
You might need to add a
dlerror()
call in order to get the error message. For example:Process 20148 stopped * thread #1, name = 'corerun', stop reason = instruction step over frame #0: 0x00007ffff76166f8 libcoreclr.so`LOADLoadLibraryDirect(libraryNameOrPath="/home/user/repos/opentelemetry-dotnet-instrumentation/bin/tracer-home/OpenTelemetry.AutoInstrumentation.Native.so") at module.cpp:1477:9 1474 if (dl_handle == nullptr) 1475 { 1476 LPCSTR err_msg = dlerror(); -> 1477 TRACE("dlopen() failed %s\n", err_msg); 1478 SetLastError(ERROR_MOD_NOT_FOUND); 1479 } 1480 else (lldb) var (LPCSTR) libraryNameOrPath = 0x00005555555f84c0 "/home/user/repos/opentelemetry-dotnet-instrumentation/bin/tracer-home/OpenTelemetry.AutoInstrumentation.Native.so" (NATIVE_LIBRARY_HANDLE) dl_handle = 0x0000000000000000 (LPCSTR) err_msg = 0x00005555555f8740 "/home/user/repos/opentelemetry-dotnet-instrumentation/bin/tracer-home/OpenTelemetry.AutoInstrumentation.Native.so: undefined symbol: _binary_Datadog_Trace_ClrProfiler_Managed_Loader_pdb_end"