graal
graal copied to clipboard
[GR-44611] Tracing agent: seems like there is no way to ingore arrays
I'm trying to prevent the tracing agent from generating rules for some arrays:
{
"name":"[Lcom.github.dockerjava.api.model.Bind;"
},
{
"name":"[Lcom.github.dockerjava.api.model.Capability;"
},
Unfortunately it seems like both rules and regexRules can't handle this case. Even with the rules below the agent still produces a rule for [Lcom.github.dockerjava.api.model.Capability;":
{
"rules": [
{"excludeClasses": "[Lcom.github.dockerjava.api.model.Capability;"}
],
"regexRules": [
{"excludeClasses": "\\[L.*"}
]
}
Hi Thank you for reaching out, we'll take a look into this shortly
Tracked internally on GR 44611
I think arrays should be completely ignored, maybe they should be replaced by the underlying class.