如何在Azure Functions v2响应中删除Request-Context标头

时间:2019-12-20 12:47:19

标签: azure-functions azure-application-insights

在Azure Functions v2应用程序中,客户端收到的标头包括:

Request-Context: appId=cid-v1:<UUID>

我知道,此标头用于关联Application Insights中来自使用不同检测键的应用程序的请求,这不是我的情况。

是否可以删除Request-Context标头?

2 个答案:

答案 0 :(得分:1)

可以通过Application Insights收集选项(在host.json中)

{
  "version": "2.0",
  "logging": {
    "applicationInsights": {
      "httpAutoCollectionOptions": {
        "enableResponseHeaderInjection" : false
      }
    }
  }
}

答案 1 :(得分:0)