我们如何使用 openTelemetry 和 exporter 作为 AddOtlpExporter 在任何数据库中保存行跟踪数据
在我的应用程序中添加的以下 nuget 包 OpenTelemetry.Exporter.OpenTelemetryProtocol(1.0.1 OpenTelemetry(1.0.1)
我的应用程序是带有 Target Framework .netstandard2.0 的类库
// Enable OpenTelemetry for the sources "Samples.SampleServer" and "Samples.SampleClient"
// and use OTLP exporter.
var openTelemetry = Sdk.CreateTracerProviderBuilder()
.AddSource("Samples.SampleClient", "Samples.SampleServer")
.SetResourceBuilder(ResourceBuilder.CreateDefault().AddService("otlp-test"))
.AddOtlpExporter(opt => opt.Endpoint = new Uri("http://localhost:54300/WeatherForecast/GetTrace"))
.Build();
using (var sample = new InstrumentationWithActivitySource())
{
sample.Start();
}
InstrumentationWithActivitySource: 您可以从链接中找到代码: https ://github.com/open-telemetry/opentelemetry-dotnet/blob/main/examples/Console/InstrumentationWithActivitySource.cs
http://localhost:54300/WeatherForecast/GetTrace 这个简单的 web api 返回字符串
我想将跟踪原始数据接收到此 API
你能帮我如何接收原始数据,以便我可以保存到数据库中。我不想使用 AddZipkinExporter 或其他一些工具来接收跟踪/日志数据。