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
Diagnostics.Activitiy.Start method currently calls Guid.NewGuid to generate a new activity ID. However, GUID generation seems to work pretty slow on Linux, thus it's proposed to replace it with some random number generation (e.g. Random.Next()) which seems to work much faster.