【发布时间】:2020-12-11 21:32:34
【问题描述】:
我正在尝试在基于 Vue 的应用中配置 Microsoft Insights。我的想法是在那里发送特定的日志,以及我认为相关的信息。 我在 Azure 中创建了资源并获得了它的检测密钥。查看文档我们可以这样加载
import { ApplicationInsights } from '@microsoft/applicationinsights-web'
const appInsights = new ApplicationInsights({ config: {
instrumentationKey: 'YOUR_INSTRUMENTATION_KEY_GOES_HERE'
} });
appInsights.loadAppInsights();
appInsights.trackPageView();
我的问题是,如何发送特定日志? 我正在寻找类似的东西:
appInsights.log('Info that I want to log');
【问题讨论】:
标签: javascript azure azure-application-insights