Esempio n. 1
0
 public TracingManager(DatadogClient client, int bufferingCount = 10, int bufferingTimeMilliseconds = 5000, Action <Exception> logException = null)
 {
     worker = new AsyncQueueWorker(client, bufferingCount, bufferingTimeMilliseconds, logException);
 }
Esempio n. 2
0
 public TracingManager()
 {
     worker = new AsyncQueueWorker(new DatadogClient());
 }