如何从Azure应用程序见解中删除数据

时间:2018-11-05 02:18:28

标签: azure-application-insights purge

我想从应用程序见解表中删除跟踪数据。可以告诉我我该怎么做。

我正在关注Microsoft的以下文章, https://docs.microsoft.com/en-us/rest/api/application-insights/components/purge

我正在尝试传递以下请求正文,

{
"table": "traces",
"filters": [
{
  "column": "timestamp",
  "operator": ">",
  "value": "2017-09-01T00:00:00"
}
]
}

enter image description here

我收到响应代码:202,但是我仍然在分析中看到查询跟踪的数据。

请告诉我,如何删除应用程序见解资源上带有跟踪的数据。

2 个答案:

答案 0 :(得分:1)

根据此SO issue

是的,可以清除Application Insights数据,,但操作可能需要一段时间(例如2-3天)。

所以请稍等:)

答案 1 :(得分:0)

对于跟踪删除操作,您需要在清除操作的主体中使用单独的表名作为“迹线”。那么您可以使用获取清除状态REST API操作来检查状态。请参阅了解更多-https://sanganakauthority.blogspot.com/2019/06/how-to-delete-or-purge-azure.html