Azure 事件日志中的错误事件 50000780,它们是什么意思?

Error events 50000780 in Event Log on Azure, what do they mean?

在我的 Azure 网站的事件日志中,我每隔 1-5 分钟就会看到同样的错误:

1 [varies]
5
50000780

这条错误信息是什么意思?提前致谢!

我找到了一个 similar issue,虽然是针对 Sharepoint 和 Lightswitch 的。看起来他们的事件日志中显示了类似的错误编号,将其分解为 XML 输出:

<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="IIS Express" />
    <EventID Qualifiers="32768">2284</EventID> <!-- Searched on this -->
    <Level>3</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-09-14T03:48:18.000000000Z" />
    <EventRecordID>8608</EventRecordID>
    <Channel>Application</Channel>
    <Computer>PSN-W12S-720</Computer>
    <Security />
  </System>
  <EventData>
    <Data>1</Data>
    <Data>5</Data>
    <Binary>50000780</Binary>
  </EventData>
</Event>

然后我从上面的 EventID 上进行了搜索,发现有一个 TechNet Article about Event ID 2284 基本上声明 FREB 无法写入日志。

FailedRequestTracing module failed to write buffered events to log file for the request that matched failure definition. No logs will be generated until this condition is corrected. The problem happened at least %1 times in the last %2 minutes. The data is the error.

您是否碰巧为您的站点启用了失败请求跟踪?如果不是你可能想要,显然它试图每 1-5 分钟写一些东西。