Azure移动日志查询

时间:2013-05-22 13:08:34

标签: azure command-line command-line-interface azure-mobile-services

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

azure mobile log SERVICE_NAME

此命令具有--query选项,您可以在其中传递“日志查询”。

我怀疑此功能可能非常有用,但无法找到有关它的任何其他信息。帮助输出仅显示log query; takes precedence over --type, --continuationToken, and --top。在线文档中写的并不多。

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

1 个答案:

答案 0 :(得分:2)

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

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

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'(查询类型以外的内容)等内容。