From 2116966171683c63f670c0caa5a5f2bd43cee6bf Mon Sep 17 00:00:00 2001 From: Evan Mattson <35585003+moonbox3@users.noreply.github.com> Date: Wed, 30 Nov 2022 18:55:48 -0500 Subject: [PATCH] Fix dotnet run jaeger command. Include comment on how to access localhost Jaeger UI. (#3957) --- examples/Console/TestJaegerExporter.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/Console/TestJaegerExporter.cs b/examples/Console/TestJaegerExporter.cs index aca390988..9f2adac33 100644 --- a/examples/Console/TestJaegerExporter.cs +++ b/examples/Console/TestJaegerExporter.cs @@ -45,9 +45,10 @@ namespace Examples.Console // the reporoot\examples\Console\. // (eg: C:\repos\opentelemetry-dotnet\examples\Console\) // - // dotnet run jaeger -h localhost -p 6831 + // dotnet run --project Examples.Console.csproj -- jaeger -h localhost -p 6831 // For non-Windows (e.g., MacOS) // dotnet run jaeger -- -h localhost -p 6831 + // Navigate to http://localhost:16686 to access the Jaeger UI. return RunWithActivity(host, port); }