我有一个Azure Function v2,它可以在本地运行。当部署到Azure时,一切似乎都处于正常工作状态(包含二进制文件的bin文件夹和包含function.json的函数名称文件夹)。
但是,当我检查它们是否运行(查看日志)时,它们不在监视器选项卡(No data available
),kudu日志流以及常规功能视图中:
2018-01-25T10:27:47 Welcome, you are now connected to log-streaming service.
2018-01-25T10:28:47 No new trace in the past 1 min(s).
2018-01-25T10:29:47 No new trace in the past 2 min(s).
的信息:
function.json:
{
"generatedBy": "Microsoft.NET.Sdk.Functions.Generator-1.0.6",
"configurationSource": "attributes",
"bindings": [
{
"type": "timerTrigger",
"schedule": "0 */1 * * * *",
"useMonitor": true,
"runOnStartup": false,
"name": "timerInfo"
}
],
"disabled": false,
"scriptFile": "../bin/Namespace.dll",
"entryPoint": "Namespace.RetrieveRedisMetrics.RunOrchestrator"
}
我有:
行为似乎与https://github.com/Azure/Azure-Functions/issues/618类似,但没有解决或评论该错误。
我无法私下分享信息应用名称(根据https://github.com/Azure/azure-webjobs-sdk-script/wiki/Sharing-Your-Function-App-name-privately),因为...功能不是记录!
还有其他想法/建议吗?