You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
telemetryClient.TrackTrace("A trace with properties",newSystem.Collections.Generic.Dictionary<string,string>{{"Key","Value"}});
68
+
telemetryClient.TrackTrace("A trace with severity and properties",SeverityLevel.Error,newSystem.Collections.Generic.Dictionary<string,string>{{"Key","Value"}});
telemetryClient.TrackException(newInvalidOperationException("Something went wrong"));
75
+
76
+
telemetryClient.TrackDependency("SQL","GetOrders","SELECT * FROM Orders",DateTimeOffset.Now,TimeSpan.FromMilliseconds(123),true);
77
+
telemetryClient.TrackDependency(newDependencyTelemetry("SQL","dbserver","GetOrders","SELECT * FROM Orders",DateTimeOffset.Now,TimeSpan.FromMilliseconds(123),"0",true));
0 commit comments