SeaLights CD Agent for .Net Application
Onboarding the .Net CD Agent
These steps outline the onboarding steps needed on the environment, with the CD agent, added to each component that builds up the Application Under Test.
Configuration steps
Download an Agent Token from the dashboard and make it available to each component configured with our agent.
This can be done by placing it in a file accessible to the agent or through an environment variable directly or through a secret manager.
Download the CD agent and make it available to each component by copying it in, downloading it during startup, or mounting an external volume containing the agent. Please refer to the dedicated section below for details.
Create an “Integration Build Lab ID” entry of type “CD only” in the dashboard for the tested application (see picture on the right).
Do so in the settings of the SeaLights dashboard, under 'Cockpit & Onboarding → Integration Build Labs → CD Only'
The lab ID from this integration build entry needs to be provided to the CD agent through an environment variable.
Add the CD agent to your environment to attach it as a Profiler to your Application Under Test.
Set the relevant parameters and/or environment variables to be used (See samples below)
When the application is up and running and the Sealights CD Agent configured, you can see it is properly running from the Cockpit -> Live Agents Monitor screen.
Sample Commands
Downloading the agent
The different available options to download the agent are documented in a dedicated central page: https://sealights.atlassian.net/l/cp/g0omvaoL
For example, you can use the following commands to automate the process
Linux | wget -nv -O sealights-dotnet-agent-linux.tar.gz https://agents.sealights.co/dotnetcore/latest/sealights-dotnet-agent-linux-self-contained.tar.gz
mkdir sl-dotnet-agent && tar -xzf ./sealights-dotnet-agent-linux.tar.gz --directory ./sl-dotnet-agent
echo "[Sealights] .NetCore Agent version is: `cat ./sl-dotnet-agent/version.txt`" |
---|---|
Windows | iwr -OutFile sealights-dotnet-agent.zip -UseBasicParsing -Uri https://agents.sealights.co/dotnetcore/latest/sealights-dotnet-agent-windows-self-contained.zip
Expand-Archive .\sealights-dotnet-agent.zip -DestinationPath sl-dotnet-agent -Force
Write-Output "[Sealights] .NetCore Agent version is: $(Get-Content .\sl-dotnet-agent\version.txt)" |
Sample configuration in a docker file
IIS Application
Make sure that the publish mode is not “Single file“ or “Portable“.
Prepare the environment variables below (absolute paths are better)
Set the environment variables to IIS Services in the Windows Registry.
For that, open the registry keys
Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WAS
andComputer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC
Add a new Multi-String value called Environment
Restart the IIS Server via the usual
iisreset /restart
Perform the query to the web application to wake it up.
Simple Web App (Desktop, Windows)
This simple use case illustrates how to collect coverage with the CD agent from a web application started without parameters.
Microservice (Alpine-based docker file)
DockerFile
Startup script
Agent’s Parameters Reference
Mandatory parameters - .Net/Agent
Variable | Required | Description | Property (CLI) |
---|---|---|---|
| Yes | Instructs the runtime to enable profiling. Set to: | N/A |
| Yes | Instructs the runtime which profiler to use. Set to: | N/A |
| Yes | Instructs the runtime where to find the 32 bit version of the profiler | N/A |
| Yes | Instructs the runtime where to find the 64 bit version of the profiler | N/A |
| Yes | Instructs the runtime to enable profiling for .NET Core | N/A |
| Yes | Instructs the runtime which profiler to use for .NET Core | N/A |
| Yes | Instructs the runtime where to find the 32 bit version of the profiler for .NET Core | N/A |
| Yes | Instructs the runtime where to find the 64 bit version of the profiler for .NET Core | N/A |
| Yes | Instructs the Sealights profiler to initialize its own collector when starting up | N/A |
| Yes | Instructs the Sealights profiler in which mode to start up |
|
| Yes | Set to |
|
Mandatory parameters - Application specific
Env variable | Required | Description | Property (CLI) |
---|---|---|---|
| Yes | Provides the Sealights agent the token to work with |
|
| Yes | Name of the target application |
|
| Yes | The source branch of the application |
|
| Yes | The build label/version of the current artifact The exact same value must be provided for the same version of the service being deployed multiple times |
|
| Yes | CD-only lab id |
|
| Yes | Path to the scanned folder where all binary files are located |
|
| Yes | Comma-separated list of namespaces to include in the scan. |
|
Optional parameters
These parameters may be required due to your specific configuration or environment’s limitations (e.g., proxy).
Env variable | Description | Parameter (CLI) |
---|---|---|
| Comma-separated list of namespaces to exclude from the scan. Supports wildcard ( Default value: |
|
| Comma-separated list of files to include in scan. Supports wildcard ( Default value: |
|
| Comma-separated list of files to exclude from the scan. Supports wildcard ( |
|
| Comma-separated list of assemblies to include. Supports wildcard ( |
|
| Comma-separated list of assemblies to exclude from the scan. Supports wildcard ( Default value: |
|
| The project source root directory, where all paths will be made relative to |
|
| The name of the target application that will be started |
|
| Arguments to be passed to the target process |
|
| The path to the working directory. By default, it’s using current working directory. |
|
Logging parameters
To enable logs, you can set the following parameters
Env variable | Description | Parameter (CLI) |
---|---|---|
| Set to |
|
| Log level. Default and Recommended value is
|
|
| Set to |
|
| Folder to save the log files to |
|
| File name to save the log to |
|