Timothy Mothra
Timothy Mothra
I hit this today. Sharing some more concrete examples: I configured my test app same as Alan: ``` app.MapControllerRoute( name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"); ``` My test app has a `HomeController`...
Hi @DaveLHX, can you please share a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) using the Application Insights SDK showing what you're trying to accomplish? We're in the process of writing a migration guide...
Hi @DaveLHX , I believe this is what you want: ```csharp using (var activity = activitySource.StartActivity("DependencyName", ActivityKind.Client)) { activity?.SetTag("http.request.method", "GET"); // The presence of this attribute will set the dependency...
Our migration guide was just published. We have examples of the Application Insights api and how to use the new OpenTelemetry api. https://learn.microsoft.com/en-us/azure/azure-monitor/app/opentelemetry-dotnet-migrate?tabs=aspnetcore#dependencytelemetry Please take a look and let us...
> Is there a list of the possible tags somewhere? Did you get that from looking in the insights repo/code? Right now I'm pulling the info from the code. We're...
I'm closing this issue. If you have additional questions, feel free to comment here or open a new issue.
Hi @mortenbock, I'm not completely following what you're trying to accomplish Are you trying to emit custom Dependency Telemetry from your app? Or is this a library that's emitting Activities...
Sorry for the delay, thanks for the extra information. Unfortunately this field is not customizable today. We've mapped it to specific types assuming dependencies would be created from Instrumentation libraries....
I'm consolidating all issues regarding overriding specific fields in the Application Insights schema into another issue to help with tracking. https://github.com/Azure/azure-sdk-for-net/issues/46021
Hello @NetherGranite , I just wanted to chime in and share that the following setting works with our Distro. ```csharp builder.Services.Configure(options => { options.IncludeScopes = true; }); ``` I'm following...