我正在使用Azure功能:我主要尝试将现有的webjob迁移到Azure Functions,现在是时候将Application Insights集成到我的一个功能中了。
所以基本上我只需要TelemetryClient
的一个实例,但这假设我能够在应用程序停止时刷新内存缓冲区。
我使用过TimerTrigger,但它仅用于测试目的。
我引用了Microsoft.ApplicationInsights nuget包(from this SO post),我的run.csx
文件看起来像这样:
using System;
using Microsoft.ApplicationInsights;
using Microsoft.Azure.WebJobs;
public static void Run(TimerInfo myTimer, TraceWriter log)
{
MyTimerJob.TelemetryClient.TrackEvent("AzureFunctionTriggered");
log.Verbose($"C# Timer trigger function executed at: {DateTime.Now}");
}
public static class MyTimerJob
{
public static readonly TelemetryClient TelemetryClient;
static MyTimerJob(){
TelemetryClient = new TelemetryClient()
{ InstrumentationKey = "MyInstrumentationKey" };
// When it shutdowns, we flush the telemty client.
new WebJobsShutdownWatcher().Token.Register(() =>
{
TelemetryClient.TrackEvent("TelemetryClientFlush");
TelemetryClient.Flush();
});
}
}
这个实现有点棘手......
TelemetryClient
,以确保我将重用相同的实例。WebJobsShutdownWatcher
检测主机何时停止,以便我可以刷新TelemetryClient。为了模拟应用程序关闭,我在底层Web应用程序中创建了"test"
应用程序设置,并在我希望主机重新启动时对其进行修改:
不幸的是,这不起作用...我没有从应用洞察信息中心看到任何名为"TelemetryClientFlush"
的活动:
所以我现在想知道当天蓝色功能主机停止时是否有任何方法可以拦截?
答案 0 :(得分:4)
除了Mathew所描述的内容之外,您可能想要使用我们将要求的取消令牌。
如果您在函数中添加CancellationToken
类型参数,我们会传入一个令牌,当主机在正常情况下关闭时,该令牌会发出信号。使用它可以让你关闭到你需要的东西:
using System;
using System.Threading;
using Microsoft.ApplicationInsights;
public static readonly TelemetryClient TelemetryClient = new TelemetryClient(){ InstrumentationKey = "MyInstrumentationKey" };
public static bool first = true;
public static void Run(TimerInfo myTimer, TraceWriter log, CancellationToken token)
{
if(first){
token.Register(() =>
{
TelemetryClient.TrackEvent("TelemetryClientFlush");
TelemetryClient.Flush();
});
first = false;
}
TelemetryClient.TrackEvent("AzureFunctionTriggered");
log.Verbose($"C# Timer trigger function executed at: {DateTime.Now}");
}
答案 1 :(得分:3)
虽然Azure功能确实在WebJobs SDK之上运行,但它不能在传统的Kudu WebJobs基础架构下运行。 WebJobsShutdownWatcher
实际上依赖于Kudu主机的功能,特别是WEBJOBS_SHUTDOWN_FILE
指示的标记文件。基本上当Kudu主机关闭时,它会触及观察者正在监视的文件。由于没有触及此类文件,因此不会触发您的代码。
我们可以进行更改以允许观察者按原样工作,或者我们可能会为函数引入新模式。我在我们的回购here中记录了一个跟踪此建议的问题。我认为这种情况很重要,我们会考虑一下。