-
Notifications
You must be signed in to change notification settings - Fork 404
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
Need ability to ignore properties of object parameters #92
Comments
This already exists! Look at Thanks for using the agent! |
What's the syntax for ignoring an object's parameter? I can ignore the On Wed, Dec 11, 2013 at 3:24 PM, Forrest L Norvell <[email protected]
Lead Developer@admittedly |
I'm with you now. Sorry for missing that detail earlier! Firstly, if you want to ensure that you're not capturing sensitive data with slow transaction traces, for now I'd suggest that you set This is a real issue, but also sort of an edge case. We have some ideas as to how to fix this, but since parameter filtering is something that is potentially done many times per request, it needs to be done in the simplest way possible to avoid causing significant performance regressions. It might be a little while before we can get to this, hence the recommendation in the previous paragraph. Thanks for the report, though, and we'll see what we can do. |
Yeah, definitely have parameter capture off in production. Would be great On Wed, Dec 11, 2013 at 4:42 PM, Forrest L Norvell <[email protected]
Lead Developer@admittedly |
This is something that every New Relic agent handles slightly differently, and right now it appears that we'd be pioneering filtering nested properties, if we do decide to implement it. The approach I have in mind involves cloning the parameters object, specifying parameters as strings using dot notation to denote the object graph ( This has some knock-on architectural considerations that mean that it's a nontrivial project, and as such probably needs to be put on our project roadmap and not done as a simple bug fix. I'll add it to our roadmapping tool, and then it'll be up to our product manager to figure out its priority. You (and anyone else who stumbles across this issue) can help that process along by opening a support ticket and describing why this is a problem for you as concretely as possible. |
Hi @seth-admittedly, We're doing some github issue cleanup. We're continuing to track your issue internally as a feature request. At this time, there is nothing more actionable for us to do with this issue, so we are closing it. Thank you for your understanding as we tidy up our issues! |
…graphql-koa-dataloader/app/protobufjs-7.2.4 chore(deps): bump protobufjs from 7.2.3 to 7.2.4 in /graphql-koa-dataloader/app
Release v6.0.0
Shared eslint rules
Release/v4.0.0
Release/v4.0.0
It's pretty common to have object parameters in a route, e.g., a user. Currently all the properties of that object are captured if parameter capturing is enabled. There needs to be a way to ignore certain properties, e.g., user.password.
The text was updated successfully, but these errors were encountered: