コード例 #1
0
 static void Main(string[] args)
 {
     //Demo1.Run(); // default AI model with request/dependency/exception/trace and event
     //Demo2.Run(); // price calculation and fixed & adaptive sampling 
     //Demo3.Run(); //exemplification of dependencies
     Demo4.Run(); // filtering of dependencies
     //Demo5.Run(); // metrics aggregation, channeling business telemetry into a different iKey and default context settings
     //Demo6.Run(); // LiveMetrics enablement
 }
コード例 #2
0
        public static void Main(string[] args)
        {
            CancellationTokenSource tokenSource = new CancellationTokenSource();
            CancellationToken       token       = tokenSource.Token;

            Demo1.RunAsync(token).Wait(); // default AI model with request/dependency/exception/trace and event
            Demo2.RunAsync(token).Wait(); // price calculation and fixed & adaptive sampling
            Demo3.RunAsync(token).Wait(); // exemplification of dependencies
            Demo4.RunAsync(token).Wait(); // filtering of dependencies
            Demo5.RunAsync(token).Wait(); // metrics aggregation, channeling business telemetry into a different iKey and default context settings
            Demo6.RunAsync(token).Wait(); // LiveMetrics enablement

            Console.ReadKey();
        }