用于选择多功能应用程序的 Azure Kusto 查询
Azure Kusto query for selecting multiple function Apps
我有一个 azure 函数,它调用多个函数应用程序。这是我对来自函数的 select 数据的查询。
FunctionAppLogs | where FunctionName == "TestFunction" | project Category, Level, Message
加载正确。此函数使用许多函数应用程序。现在我需要在这里 select 我的应用程序名称。有没有办法将查询写入 select 函数应用程序名称。任何人都有这样做的想法。请帮助
使用资源 ID 列,您可以提取特定函数调用下涉及的函数应用程序的日志。
FunctionAppLogs
| where FunctionName == "<functionName>"
| where _ResourceId contains "<functionappName>" or ResoucreId contains "<functionName>
| project Category, Level, Message,_ResourceId
我有一个 azure 函数,它调用多个函数应用程序。这是我对来自函数的 select 数据的查询。
FunctionAppLogs | where FunctionName == "TestFunction" | project Category, Level, Message
加载正确。此函数使用许多函数应用程序。现在我需要在这里 select 我的应用程序名称。有没有办法将查询写入 select 函数应用程序名称。任何人都有这样做的想法。请帮助
使用资源 ID 列,您可以提取特定函数调用下涉及的函数应用程序的日志。
FunctionAppLogs
| where FunctionName == "<functionName>"
| where _ResourceId contains "<functionappName>" or ResoucreId contains "<functionName>
| project Category, Level, Message,_ResourceId