【发布时间】:2022-07-06 13:13:11
【问题描述】:
我想知道 Azure 应用洞察是否支持对 Nodejs 应用进行分析。如果不是这样,那有什么替代方法吗?
谢谢
【问题讨论】:
标签: node.js azure docker azure-application-insights
我想知道 Azure 应用洞察是否支持对 Nodejs 应用进行分析。如果不是这样,那有什么替代方法吗?
谢谢
【问题讨论】:
标签: node.js azure docker azure-application-insights
我想知道 Azure 应用洞察是否支持对 Nodejs 应用进行分析。
是的,您可以使用 Azure Application Insights 对 Node.js 应用执行分析。
根据documentation,安装以下客户端库:
npm install @opentelemetry/sdk-trace-base
npm install @opentelemetry/sdk-trace-node
npm install @azure/monitor-opentelemetry-exporter
您可以参考Monitor your Node.js services and apps with Application Insights、Use Application Insights with on-premises Node.js application和Need help and guidance for accessing operationId in nodejs application
更多信息可以查看Application Insights SDK for Node.js的GitHub仓库
【讨论】: