应用程序见解:通过REST API进行元数据查询

时间:2017-02-10 02:34:55

标签: azure-application-insights

是否可以通过REST API提交Application Insights元数据命令?我能做的最好是GET / query / schema返回的内容吗?

.show table requests | project AttributeName ...

1 个答案:

答案 0 :(得分:0)

您要求的语法是受支持的查询语言的一部分。有关支持的API的完整列表,您可以访问https://dev.applicationinsights.io

如果您需要以编程方式查询表格的架构,可以使用:

requests | getschema

将其插入测试工具会产生以下请求:https://dev.applicationinsights.io/apiexplorer/query?appId=DEMO_APP&apiKey=DEMO_KEY&query=%20customEvents%20%7C%20getschema%0A

或者,您可以使用https://dev.applicationinsights.io/apiexplorer/querySchema?appId=DEMO_APP&apiKey=DEMO_KEY在单个查询中查询整个架构。这将为您提供所有表的所有列的列表。

出于好奇 - 您为什么要通过REST API来实现?

`