Azure 函数日志可视化工具(类似于 WCF 的服务跟踪查看器工具)

Tool for Azure functions log visualiser ( similar to Service Trace Viewer Tool for WCF)

Is/Are 有类似于 Service Trace Viewer Tool for WCF 的 Azure Functions 跟踪和可视化工具吗?

对于 Azure PaaS 范式,是否有任何可视化工具可用于跟踪 and/or Azure 函数之间的依赖关系?

假设您想收集日志或错误数据以监控功能。

实际上 Azure Function built-in 与 Azure Application Insights 集成以监控 Function。更多信息你可以参考这个文档:Monitor Azure Functions.

您需要创建一个 Application Insights 资源并转到“功能设置”启用 Application Insights。在那里您可以创建一个新的 Application Insights 或选择您已经创建的一个。

然后您将能够在 Azure Application Insights 中查看 Function 数据。希望对你有帮助。