61 lines
2.0 KiB
C#
61 lines
2.0 KiB
C#
// <copyright file="Program.cs" company="OpenTelemetry Authors">
|
|
// Copyright The OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
// </copyright>
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using OpenTelemetry;
|
|
using OpenTelemetry.Exporter;
|
|
using OpenTelemetry.Resources;
|
|
using OpenTelemetry.Trace;
|
|
|
|
namespace GettingStartedJaeger;
|
|
|
|
public class Program
|
|
{
|
|
private static readonly ActivitySource MyActivitySource = new("OpenTelemetry.Demo.Jaeger");
|
|
|
|
public static async Task Main()
|
|
{
|
|
using var tracerProvider = Sdk.CreateTracerProviderBuilder()
|
|
.SetResourceBuilder(ResourceBuilder.CreateDefault().AddService(
|
|
serviceName: "DemoApp",
|
|
serviceVersion: "1.0.0"))
|
|
.AddSource("OpenTelemetry.Demo.Jaeger")
|
|
.AddHttpClientInstrumentation()
|
|
.AddConsoleExporter()
|
|
.AddOtlpExporter()
|
|
.Build();
|
|
|
|
using var parent = MyActivitySource.StartActivity("JaegerDemo");
|
|
|
|
using (var client = new HttpClient())
|
|
{
|
|
using (var slow = MyActivitySource.StartActivity("SomethingSlow"))
|
|
{
|
|
await client.GetStringAsync("https://httpstat.us/200?sleep=1000");
|
|
await client.GetStringAsync("https://httpstat.us/200?sleep=1000");
|
|
}
|
|
|
|
using (var fast = MyActivitySource.StartActivity("SomethingFast"))
|
|
{
|
|
await client.GetStringAsync("https://httpstat.us/301");
|
|
}
|
|
}
|
|
}
|
|
}
|