-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clearer setup instructions #2076
Comments
We have to make the I think the https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation#shell-scripts needs some more comments regarding the used commands. Also the example uses Probably in https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation#powershell-module-windows should have a minimal example for a CLI app. Maybe also more comments? @ramanjaneyagupta @theletterf We are open for any suggestions. |
The main thing is that right now we are not working well with |
As a temporary and short workaround, the instructions should tell to use a separate shell to run the |
Discussed in #2075
Originally posted by ramanjaneyagupta January 24, 2023
I am new to the dotnet and trying to follow the instructions provided here
https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation
for windows, it is so confusing and steps are not clear to me. and lets say i have very basic sample application it have the follwong lines code
Console.WriteLine("Hello, World!");
var httpClient = new HttpClient();
var response = await httpClient.GetAsync("https://google.com/");
Console.WriteLine($"Response Status: {response.StatusCode}");
so if i want to add auto instrumentation could someone help with the proper steps that users(like me) can understand easily.
I did for java and python and it is so clear for the auto instrumentation but for dotnet i am fidning hardtime to setup.
Help would be appreciated.
The text was updated successfully, but these errors were encountered: