1

Azure 有非常有用的命令行工具,其中包括可以从移动服务检索日志。像这样:

azure mobile log SERVICE_NAME

此命令具有--query可以传递“日志查询”的选项。

我怀疑此功能可能非常有用,但找不到有关它的任何其他信息。帮助输出只说log query; takes precedence over --type, --continuationToken, and --top. 在线文档中没有更多内容。

请告诉,这个选项可以做什么,这个“日志查询”的语法是什么?任何我可以获得更多信息的链接将不胜感激。

4

1 回答 1

2

我通过查看命令行工具的源代码找到了这个问题的答案(https://github.com/WindowsAzure/azure-sdk-tools-xplat/blob/master/lib/commands/mobile.js, 1574-1621 和 258-288 行)。三个参数(--top、--continuationToken、--type)被翻译成查询字符串参数,发送给服务。--top 直接映射到$top参数,--continuationToken 直接映射到continuationToken,而--type 映射到$filter参数,并带有关于“类型”字段的谓词。

例如,此命令(为清楚起见添加了换行符)

azure mobile log SERVICE_NAME --top 5
                              --continuationToken <the cont token>
                              --type information

与(为清楚起见添加了换行符)相同

azure mobile log SERVICE_NAME --query "$top=5&
                                       continuationToken=<the cont token>&
                                       $filter=type eq 'information'"

查询功能非常有限,但您可以执行type ne 'information'(不等于)或Source eq '/table/mytablename.insert.js'(查询类型以外的内容)之类的操作。

于 2013-05-23T20:20:46.083 回答