-
Notifications
You must be signed in to change notification settings - Fork 35
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
Detect Blazor and ASP.NET applications for request tracing #569
Comments
@mrm9084 and I were discussing the flask and django usage for python applications. It's good if we can design something to capture the framework information. |
There's no fool proof method to detect whether users are using Blazor or not. According to dotnet/aspnetcore#56633 Apps utilizing Blazor are not fundamentally different from other types of ASP.NET apps. ASP.NET Core supports mixing various frameworks together, so you could even have an app that utilizes both Razor Pages and Blazor. In fact, prior to .NET 8, most Blazor Server apps also used Razor Pages to host the root Blazor component. There isn't much that a class library can do to observe these types of detailed characteristics about the app. The best we can do is to check which assemblies have been loaded (e.g. SignalR related stuff), but that's only a heuristic and subject to change at any point in the future. |
Discussed with @jimmyca15 and @rossgrambo offline. We are going to collect whether there is |
Knowing the approximate proportion of ASP.NET applications out of all customers could be helpful for understanding which features are most important to our users, and which kinds of applications are using certain features.
The text was updated successfully, but these errors were encountered: