Django API "request count" 现在显示在 Azure App Insights > Performance with opencensus 中

Django API "request count" now showing in Azure App Insights > Performance with opencensus

运行 我的 Django python API 应用程序未使用 opencensus.

将所有指标记录到 Azure App Insights 的问题

但例如,我们正在获取 CPU/memory 日志记录:

我希望性能 > 请求计数看起来与此类似(在不同的应用程序框架上):

performance counters 部分看起来很简单。

我的代码如下所示:

from opencensus.ext.azure import metrics_exporter

def main():
  INSTRUMENTATION_KEY = os.getenv("INSTRUMENTATION_KEY", "xxx")

  exporter = metrics_exporter.new_metrics_exporter(connection_string='InstrumentationKey='+INSTRUMENTATION_KEY)

我觉得你需要确认一下你的应用的请求是否被捕获了,你可以参考this section,Incoming requests, outgoing requests <=> Tracing

因此,根据您提供的教程,我是 python 的新手,但我认为您可以考虑 this section?