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
{{ message }}
This repository was archived by the owner on Oct 12, 2025. It is now read-only.
varmeter=newMeter("Lagrange.Core");varcounter=meter.CreateCounter<long>("lagrange.received_messages");// After receiving a messagecounter.Add(1);
Tracing
可以添加在各种异步耗时操作的方法体内
varsource=newActivitySource("Lagrange.Core");varactivity=source.StartActivity(/* [CallerMemberName] string name */);// Do some work// Duration inside the StartActivity/Dispose will be trackedactivity?.Dispose();