We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01708e3 commit 9d91ffcCopy full SHA for 9d91ffc
1 file changed
src/profiler/elastic_apm_profiler/src/profiler/mod.rs
@@ -58,7 +58,7 @@ pub mod sig;
58
mod startup_hook;
59
pub mod types;
60
61
-const SKIP_ASSEMBLY_PREFIXES: [&str; 22] = [
+const SKIP_ASSEMBLY_PREFIXES: [&str; 23] = [
62
"Elastic.Apm",
63
"MessagePack",
64
"Microsoft.AI",
@@ -80,6 +80,7 @@ const SKIP_ASSEMBLY_PREFIXES: [&str; 22] = [
80
"System.Text",
81
"System.Threading",
82
"System.Xml",
83
+ "System.Web",
84
"Newtonsoft",
85
];
86
const SKIP_ASSEMBLIES: [&str; 7] = [
@@ -89,7 +90,7 @@ const SKIP_ASSEMBLIES: [&str; 7] = [
89
90
"Microsoft.AspNetCore.Razor.Language",
91
"Microsoft.AspNetCore.Mvc.RazorPages",
92
"Anonymously Hosted DynamicMethods Assembly",
- "ISymWrapper",
93
+ "ISymWrapper"
94
95
96
/// The git hash defined on build
0 commit comments