Hi Team,
I am trying to do appdynamics on a xamarin forms app.
I am getting the crash details.
I have used instrumentation and logging some data from code
public MainPage() { var callTracker = AppDynamics.Agent.Instrumentation.BeginCall("MainPage", "Constructor", "Page ConstructorLoading"); InitializeComponent(); try { //Label f = new Label(); //f.Text = "Welcome"; //this.Content = f; AppDynamics.Agent.Instrumentation.EndCall(callTracker); } catch(Exception ex) { AppDynamics.Agent.Instrumentation.LeaveBreadcrumb("login",AppDynamics.Agent.BreadcrumbVisibility.CrashesAndSessions); AppDynamics.Agent.Instrumentation.EndCall(callTracker, ex); } }
Where can I find these logs in site? I am unable to find this information.
... View more