Fix dotnet run jaeger command. Include comment on how to access localhost Jaeger UI. (#3957)

This commit is contained in:
Evan Mattson 2022-11-30 18:55:48 -05:00 committed by GitHub
parent 260460787f
commit 2116966171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}