📜  appinsights trackException javascript (1)

📅  最后修改于: 2023-12-03 14:39:18.663000             🧑  作者: Mango

使用 JavaScript 中的 App Insights trackException

在开发过程中,我们经常会遇到出现异常的情况。在这种情况下,我们希望能够及时地捕获并处理这些异常,以保证程序的正常运行。App Insights 是一个用于监测和分析执行情况的工具,可以帮助我们实现这一目的。

准备工作

在使用 App Insights 进行异常监测之前,我们需要先进行一些准备工作。

第一步,我们需要在 Azure 门户上创建一个 Application Insights 连接器。这个连接器将帮助我们将浏览器中的异常信息发送到 Azure 中。

第二步,我们需要在我们的应用程序中添加 App Insights JavaScirpt SDK。我们可以在这里找到 SDK 下载地址。

使用 App Insights TrackException

一旦我们完成了上述准备工作,我们就可以开始使用 App Insights 进行异常监测了。在 JavaScript 中,我们可以使用 trackException 方法来捕获和处理异常。

下面是 trackException 方法的语法:

appInsights.trackException({
    exception: new Error('Error message'),
    severityLevel: 3,
    properties: {
        customProperty: 'customPropertyValue'
    }
});

其中,exception 参数用于指定我们要捕获的异常对象。例如,我们可以使用 new Error('Error message') 语句来创建一个异常对象,并将错误消息作为参数传递进去。

severityLevel 参数用于指定异常的严重程度。它的取值范围是 0-4,其中 4 表示致命错误,0 表示信息性消息。

properties 参数用于指定传递给异常的其他数据。我们可以通过这个参数来传递自定义属性,以便更好地理解和处理异常。

使用示例

下面是一个使用 App Insights TrackExeption 的示例:

// 引入 App Insights SDK
window.appInsights=window.appInsights||function(config){
    function r(config){t[config]=function(){var i=arguments;t.queue.push(function(){t[config].apply(t,i)})}}var t={config:config},u=document,e=window,o="script",s=u.createElement(o),i,f;s.src=config.url||"https://az416426.vo.msecnd.net/scripts/a/ai.0.js";u.getElementsByTagName(o)[0].parentNode.appendChild(s);try{t.cookie=u.cookie}catch(h){}for(t.queue=[],i=["Event","Exception","Metric","PageView","Trace","Dependency"];i.length;)r("track"+i.pop());return r("setAuthenticatedUserContext"),r("clearAuthenticatedUserContext"),config.disableExceptionTracking||(i="onerror",r("_"+i),f=e[i],e[i]=function(config,r,u,e,o){var s=f&&f(config,r,u,e,o);return s!==!0&&t["_"+i](config,r,u,e,o),s}),t
}({
    instrumentationKey:"YOUR_APP_INSIGHTS_INSTRUMENTATION_KEY"
});

// 捕获异常
window.onerror = function(message, source, line, column, error) {
    window.appInsights.trackException({
        exception: error,
        severityLevel: 3,
        properties: {
            errorMessage: message,
            source: source,
            line: line,
            column: column
        }
    });
};

// 抛出异常
throw new Error('This is a test exception');

在这个示例中,我们创建了一个全局的 window.onerror 事件处理函数来捕获异常。在这个函数中,我们使用 trackException 方法来捕获异常,并将异常信息发送到 Azure 中。同时,我们也可以抛出一个测试异常来检验我们的异常监测是否正常工作。

总结

通过使用 App Insights 的 trackException 方法,我们可以轻松地捕获和处理 JavaScript 中的异常。这将帮助我们及时地发现和解决问题,提高我们的应用程序的稳定性和可靠性。