I am trying to follow Scott Hanselman's example on using glimpse to trace an ASP.NET MVC 3 application.
Public Function SomeAction(id As Integer) As ActionResult
Dim traceid = Guid.NewGuid.ToString
Trace.TraceInformation(traceid & " " &
DateTime.Now.ToString("HH:mm:ss:fffffff") & " action start")
...
Trace.TraceInformation(traceid & " " &
DateTime.Now.ToString("HH:mm:ss:fffffff") & " some other traces")
Return RedirectToAction("AnotherAction", New With {.id = id})
End Function
As you can see, in my case, at the end of the function, I redirect to another action and in "AnotherAction", glimpse doesn't show the traces that I have written during "SomeAction".
Is it possible to see the traces that I wrote to the action before redirect with glimpse?
BTW glimpse v.0.82