0

Raygun 能否用于报告 Azure 辅助角色中未捕获的异常?还是必须手动将捕获的异常发送到 Raygun?我已将以下几行添加到我的 app.config

<configSections>
    <section name="RaygunSettings" type="Mindscape.Raygun4Net.RaygunSettings, Mindscape.Raygun4Net" />
</configSections>
<RaygunSettings apikey="my_key" />

我还在 WorkerRole.cs 中添加了以下内容:

public class WorkerRole : RoleEntryPoint, IRaygunApplication
{
    private static readonly RaygunClient _raygunClient = new RaygunClient();

    public RaygunClient GenerateRaygunClient()
    {
        return _raygunClient;
    }
}
4

1 回答 1

0

我只需要按照此处的说明进行操作。

工人角色的完整设置是:

将您的 api 密钥添加到服务配置中

<ConfigurationSettings>
    <Setting name="Raygun.ApiKey" value="my_key" />
</ConfigurationSettings>

安装 RayGun4Net Nuget 包:https ://www.nuget.org/packages/Mindscape.Raygun4Net/

在 app.config 中添加一个部分

configSections>
    <section name="RaygunSettings" type="Mindscape.Raygun4Net.RaygunSettings, Mindscape.Raygun4Net" />
</configSections>

更新 WorkerRole.cs

public override bool OnStart()
    {
        AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
        return base.OnStart();
    }

void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
    {
        var raygunClient = new RaygunClient(ConfigHelpers.GetAppSetting("Raygun.ApiKey"));

        raygunClient.Send((Exception)e.ExceptionObject);
    }
于 2016-04-20T09:22:43.337 回答