Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup Airbrake for your .NET application #1

Open
MichaelHinrichs opened this issue Dec 17, 2023 · 0 comments
Open

Setup Airbrake for your .NET application #1

MichaelHinrichs opened this issue Dec 17, 2023 · 0 comments
Labels

Comments

@MichaelHinrichs
Copy link
Owner

Installation

Installation is available by the package repository NuGet. There are a variety of packages, each for different types of .NET apps:

Adding via Package Manager

For .NET 4.5.2 applications and above install the Sharpbrake.Client package available on NuGet via your Package Manager Console:

PM> Install-Package Sharpbrake.Client

Configuration

Before using the library and its notifiers, you must to configure them. In most cases, it is sufficient to configure only one, default, notifier.

(You can find your project ID and API key in your project's settings)

var airbrake = new AirbrakeNotifier(new AirbrakeConfig
  {
    ProjectId = "<Your project ID>",
    ProjectKey = "<Your project API KEY>"
  });

There are multiple ways to set your PROJECT_ID and PROJECT_KEY:

  • Setting explicitly:

    var config = new AirbrakeConfig {
      ProjectId = "<Your project ID>",
      ProjectKey = "<Your project API KEY>"
    };
  • Using App.config or Web.config:

    <appSettings>
        <add key="Airbrake.ProjectId" value="<Your project ID>" />
        <add key="Airbrake.ProjectKey" value="<Your project API KEY>" />
    </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": "<Your project ID>",
        "ProjectKey": "<Your project API KEY>",
      }
    }
    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);

Full documentation

For a rundown of advanced configuration options and the notifier API provided for .NET/C# apps, please visit our GitHub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant