我在记录 AWS X-Ray 异常时遇到问题。
这是 Application_Error 中的内容:
protected void Application_Error(object sender, EventArgs e)
{
Exception exception = Server.GetLastError();
if (exception != null)
{
var InnerException = exception.InnerException;
Session["error"] = String.Format("{0} ::: {1}", exception.Message, exception.StackTrace);
try
{
AWSXRayRecorder.Instance.AddException(exception);
}
catch (Exception ee)
{
// ignore errors for XRay
}
}
Server.ClearError();
}
但是,在 AddException 行上抛出一个错误,指出“CallContext 中不存在段”
第一次尝试让 X 射线进行。有什么建议吗?是否有任何人遇到过的教程可能会有所帮助?