Airbrake is an online tool that provides robust exception tracking in most of your C#/.NET applications. In doing so, it allows you to easily review errors, tie an error to an individual piece of code, and trace the cause back to recent changes. The Airbrake dashboard provides easy categorization, searching, and prioritization of exceptions so that when errors occur, your team can quickly determine the root cause.
Sharpbrake is a C# notifier library for Airbrake. It provides minimalist API to send C# exceptions to the Airbrake dashboard. The library perfectly suits any type of C# applications.
- Uses the new Airbrake JSON (v3)[link]
- SSL support (all communication with Airbrake is encrypted by default)
- Support for .NET 3.5 and above (including the latest .NET Core platforms)
- Asynchronous exception reporting[link]
- Logging support[link]
- Flexible configuration options (configure as many Airbrake notifiers in one application as you want)[link]
- Support for environments[link]
- Support for proxying[link]
- Filters support (filter out sensitive or unwanted data that shouldn't be sent to our servers)[link]
- Ability to ignore errors from specified environments[link]
The library comes with the following integrations:
This is the minimal example that you can use to test Sharpbrake with your project.
using System;
using Sharpbrake.Client;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
var airbrake = new AirbrakeNotifier(new AirbrakeConfig
{
ProjectId = "113743",
ProjectKey = "81bbff95d52f8856c770bb39e827f3f6"
});
try
{
throw new Exception("Oops!"));
}
catch (Exception ex)
{
var response = airbrake.NotifyAsync(ex).Result;
Console.WriteLine("Status: {0}, Id: {1}, Url: {2}", response.Status, response.Id, response.Url);
}
}
}
}
Consult our documentation to learn how to create an Airbrake-enabled console app.
Before using the library and its notifiers, you must configure them. In most cases, it is sufficient to configure only one, default, notifier.
var airbrake = new AirbrakeNotifier(new AirbrakeConfig
{
ProjectId = "113743",
ProjectKey = "81bbff95d52f8856c770bb39e827f3f6"
});
You must set both ProjectId
& ProjectKey
.
To find your ProjectId
and ProjectKey
navigate to your project's General
Settings and copy the values from the right sidebar.
There are multiple ways to set these values:
-
Setting explicitly:
var config = new AirbrakeConfig { ProjectId = "127348", ProjectKey = "e2046ca6e4e9214b24ad252e3c99a0f6" };
-
Using
App.config
orWeb.config
:<appSettings> <add key="Airbrake.ProjectId" value="127348" /> <add key="Airbrake.ProjectKey" value="e2046ca6e4e9214b24ad252e3c99a0f6" /> </appSettings>
var settings = ConfigurationManager.AppSettings.AllKeys .Where(key => key.StartsWith("Airbrake", StringComparison.OrdinalIgnoreCase)) .ToDictionary(key => key, key => ConfigurationManager.AppSettings[key]); var airbrakeConfiguration = AirbrakeConfig.Load(settings);
-
Using
airbrake.json
. Use comma-separated values to add more than one argument for options that support it:{ "Airbrake": { "ProjectId": "127348", "ProjectKey": "e2046ca6e4e9214b24ad252e3c99a0f6" } }
var path = "airbrake.json"; var configurationBuilder = new ConfigurationBuilder() .SetBasePath(System.IO.Directory.GetCurrentDirectory()) .AddJsonFile(path) .Build(); var settings = configurationBuilder.AsEnumerable() .Where(setting => setting.Key.StartsWith("Airbrake")) .ToDictionary(setting => setting.Key, setting => setting.Value); var airbrakeConfiguration = AirbrakeConfig.Load(settings);
The library can log responses from Airbrake via the LogFile
option. The option
accepts a path to the log file. Supports relative (to your app's executable) and
absolute paths. By default, it's not set.
var config = new AirbrakeConfig {
LogFile = "airbrake.log"
};
Configures the environment the application is running in. Helps the Airbrake dashboard to distinguish between exceptions occurring in different environments. By default, it's not set.
var config = new AirbrakeConfig {
Environment = "production"
};
The version of your application that you can pass to differentiate exceptions between multiple versions. It's not set by default.
var config = new AirbrakeConfig {
AppVersion = "1.0.1"
};
By default, it is set to airbrake.io
. A host
is a web address containing a
scheme ("http" or "https"), a host and a port. You can omit the port (80 will be
assumed) and the scheme ("https" will be assumed).
var config = new AirbrakeConfig {
Host = "http://127.0.0.1:8000"
};
If your server is not able to directly reach Airbrake, you can use a built-in proxy. By default, Sharpbrake uses a direct connection.
var config = new AirbrakeConfig {
ProxyUri = "http://46.166.165.63:8080",
ProxyUsername = "username",
ProxyPassword = "s3kr3t"
};
Setting this option allows Airbrake to filter exceptions occurring in unwanted
environments such as test
. By default, it is not set, which means Sharpbrake
sends exceptions occurring in all environments.
var config = new AirbrakeConfig {
IgnoreEnvironments = new List<string> { "development" }
};
Specifies which keys in the payload (parameters, session data, environment data,
etc) should be filtered. Before sending an error, filtered keys will be
substituted with the [Filtered]
label.
var config = new AirbrakeConfig {
BlacklistKeys = new List<string> { "password", "creditCard", "email" }
};
// The dashboard will display this parameter as filtered, but other values won't
// be affected:
// { user: 'John',
// password: '[Filtered]',
// email: '[Filtered]',
// creditCard: '[Filtered]' }
Note: BlacklistKeys
has higher priority than WhitelistKeys
. It means
that if you set the same value into both blacklist and whitelist - that value
will be filtered out.
Specifies which keys in the payload (parameters, session data, environment data,
etc) should not be filtered. All other keys will be substituted with the
[Filtered]
label.
var config = new AirbrakeConfig {
WhitelistKeys = new List<string> { "user", "email", "accountId" }
};
// The dashboard will display this parameter as is, but all other values will be
// filtered:
// { user: 'John',
// password: '[Filtered]',
// email: 'john@example.com',
// accountId: 42 }
AirbrakeConfig.Load
accepts a Dictionary
consisting of config option names
and their values.
// Construct a dictionary with configuration options
var settings = ConfigurationManager.AppSettings.AllKeys
.Where(key => key.StartsWith("Airbrake", StringComparison.OrdinalIgnoreCase))
.ToDictionary(key => key, key => ConfigurationManager.AppSettings[key]);
// Create a config from that dictionary
var config = AirbrakeConfig.Load(settings);
Notify
asynchronously sends an exception to the Airbrake dashboard and logs a
response from Airbrake. It's a convenience method
around NotifyAsync
.
try
{
throw new Exception();
}
catch(Exception ex)
{
airbrake.Notify(ex);
}
NotifyAsync
is similar to Notify
, however it is much more
powerful because it provides control over the response object from Airbrake. The
API is different for .NET 3.5 and .NET 4.5 (clarified below):
In .NET 4.5 and above you can use task-based programming model. Example of using a continuation, which prints URL to the error in the Airbrake dashboard:
airbrake.NotifyAsync(ex)
.ContinueWith(response => Console.WriteLine(response.Result.Url));
The method also supports async/await
:
var response = await airbrake.NotifyAsync(ex);
Console.WriteLine(response.Url);
In .NET 3.5 you can subscribe to the NotifyCompleted
event and define your
custom logic in an event handler:
airbrake.NotifyCompleted += (sender, eventArgs) =>
{
airbrakeResponse = eventArgs.Result;
Console.WriteLine(airbrakeResponse.Url);
};
airbrake.NotifyAsync(ex);
A notice can be customized or ignored before it is sent to Airbrake via
AddFilter
. A lambda expression that is passed to the AddFilter
method
accepts a Notice
that can be processed by your code. The Notice
object is
pre-populated with errors, context and params, so you can freely modify these
values if you wish. The Notice
object is not sent to Airbrake if the lambda
expression returns null
:
airbrake.AddFilter(notice =>
{
// ignore notice if email is "test@example.com"
if (notice.Context.User.Email == "test@example.com")
return null;
// clear environment variables with "token"-related keys
foreach (var key in notice.EnvironmentVars.Keys)
if (key.Contains("token"))
notice.EnvironmentVars[key] = string.Empty;
return notice;
});
Exception
and HttpContext
are properties that can be used to retrieve the
values that the Notice
object was built from.
Used to access additional exception properties. For example, if your exception is
an HttpException
, you can ignore it if GetHTTPCode()
returns 404:
airbrake.AddFilter(notice =>
{
var exception = notice.Exception as HttpException;
if (exception != null && exception.GetHttpCode() == 404)
return null;
return notice;
});
Used to retrieve HTTP context properties:
airbrake.AddFilter(notice =>
{
notice.Params["response"] = notice.HttpContext.Response
return notice;
});
- Install the
Sharpbrake.Http.Module
package from NuGet (you can use "Package Manager Console" from Visual Studio):
PM> Install-Package Sharpbrake.Http.Module
- Configure
appSettings
inWeb.config
(how to configure):
<appSettings>
<add key="Airbrake.ProjectId" value="113743"/>
<add key="Airbrake.ProjectKey" value="81bbff95d52f8856c770bb39e827f3f6"/>
</appSettings>
- Add the
AirbrakeHttpModule
module to yoursystem.webServer
inWeb.config
:
<system.webServer>
<modules>
<add name="Airbrake" type="Sharpbrake.Http.Module.AirbrakeHttpModule, Sharpbrake.Http.Module"/>
</modules>
</system.webServer>
-
Install the
Sharpbrake.Http.Middleware
package from NuGet (you can use "Package Manager Console" from Visual Studio):PM> Install-Package Sharpbrake.Http.Middleware
-
Configure
appsettings.json
:
"Airbrake": {
"ProjectId": "113743",
"ProjectKey": "81bbff95d52f8856c770bb39e827f3f6",
}
- Add the middleware to your
Startup.cs
:
using Sharpbrake.Http.Middleware;
Then make sure to add AirbrakeMiddleware
to your pipeline by updating the
Configure
method:
app.UseAirbrake(Configuration.GetSection("Airbrake"));
Note: In most cases you want to put AirbrakeMiddleware
as a topmost
middleware component to load it as early as possible. However, if you use
app.UseDeveloperExceptionPage
and/or app.UseExceptionHandler
, then
AirbrakeMiddleware
must be put after these components.
You can use the IAirbrakeFeature
feature from the Features
collection of
HttpContext
to access the notifier that was initialized by the middleware:
var airbrake = HttpContext.Features.Get<IAirbrakeFeature>().GetNotifier();
The project uses the MIT License. See LICENSE.md for details.