Config Transforms for Raygun’s .NET Provider: Improve Your Workflow With Raygun and .NET
In this post we take a look at how to leverage .NET's transforms for modifying your Raygun integration's settings across multiple environments.
Join the DZone community and get the full member experience.
Join For Free.NET config transforms are a convenient way of modifying the RaygunSettings object when deploying your web application across multiple environments.
In this article, we’ll walk through exactly why Web.config transforms are so useful when paired with the Raygun4Net provider and how you can start using them in your .NET web application.
What Are Web.config Transforms?
Config transform files allow for the automatic transformation of a web application’s Web.config file. The Web.config file often contains settings (including Raygun’s own settings) that should be different across deployment environments. Transforms can be used to modify these settings upon deployment.
The Purpose of Config Transforms
The main reason for using config transforms alongside the Raygun4Net provider is the ability to have different environments reporting to different Raygun applications. This can be achieved by having different Web.config transforms for each deployment environment.
Multiple Web.config transforms allows you to replace the RaygunSettings “apiKey” property with that of multiple Raygun applications. For example, you can have a development (or beta) environment, plus a production environment reporting to separate Raygun applications.
This is extremely beneficial for separating concerns within your development process.
Another similar use case for config transforms is having an application only send data to Raygun in certain environments but not others. This is done by setting the “apiKey” value to an empty string (“”) in the main Web.config file, then using a transform to set this value when you want to start sending data to Raygun.
Utilizing this method can be helpful to reduce the number of events being sent to Raygun, especially if you have a limited number of Raygun applications and want to stop clutter from test environments.
In addition to the above benefits, config transforms can also be used to filter reported data depending on the deployment environment.
The RaygunSettings within the Web.config file has a number of options, that can also be transformed using config transforms. One very useful option is the “ignoreFormFieldNames” option. “ignoreFormFieldNames” can be used to filter out sensitive form data. Setting the “ignoreFormFieldNames” value to something like “*password*” will filter out all form field data with names containing “password”.
This can be very helpful for filtering sensitive data, like passwords, in a production environment but not in a development environment. (See the documentation for setting up inbound filters here.) Other useful options include: ‘ignoreHeaderNames’, ‘ignoreCookieNames’ and ‘ignoreServerVariableNames’.
Setup
Typically, the RaygunSettings section of your Web.config will look something like this:
<RaygunSettings apikey="YOUR_API_KEY"/>
To make use of config transforms, the value of apiKey could be set to empty (“”) and then set to the actual value via a config transform.
Setting up a Web.config transform in Visual Studio is easy:
- In Visual Studio navigate to the ‘Build’ menu and select ‘Configuration Manager’:
Step one of setting up a config transform in Visual Studio.
- From the ‘Active solution configuration’ dropdown select ‘<New…>’
- It is helpful to name the transform the same or similar to the environment it will be transforming (e.g. Production, Beta, Development, etc…). Settings can be copied from an existing transform if one exists:
Step two and three of setting up a config transform in Visual Studio.
- Once the new transform has been created, it can be added to the Solution Explorer by right clicking your project’s Web.config and selecting ‘Add config transform’.
- Now when you click the arrow next to your Web.config you should see the newly created config transform. This will be named ‘Web.TransformName.config’.
Step four and five of setting up a config transform in Visual Studio.
Once you have a new solution configuration and config transform file, you can add a transform line like:
<RaygunSettings xdt:Transform="Replace" apikey="YOUR_API_KEY"/>
The above transform line will replace the empty apiKey string in your Web.config file with an actual API key. This has essentially told the Raygun4Net provider to only send events if the config transform has been applied.
Don’t forget there are various RaygunSettings options that can be similarly transformed; check them out here.
Finally, to utilize the new transform file you will need to build your application using the solution configuration you created. Doing so will apply all of the changes in your transform file to the base Web.config file. Web.config transforms can also be applied automatically using a deployment tool such as Octopus. To find out more about transforms in the Octopus deployment tool, click here.
Do you have any questions about making your workflow more efficient with .NET? Get in touch with a friendly team member.
Published at DZone with permission of Matt Byers, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments