Feature Request
Add Method To Exclude Form Values Without Specifying Field Names
Current Status:
Completed
fujiiface
I am proposing the implementation of a method that would easily exclude all Form values.
I mentioned this in the forums previously and got a response but after a demo, this was something my data security team was definitely concerned with so I figured I would formalize a request.
It would basically be like the following:
var exception = Server.GetLastError();
new RaygunClient().ExcludeFormData().Send(exception);
or
var exception = Server.GetLastError();
RaygunClient raygun = new RaygunClient();
raygun.ExcludeFormData = true;
raygun.Send(exception);
This could be further extended to Server and Header variables as well.
Raygun
John-Daniel Trask
Posted on
Jun 18 2014
Hello fujiiface
Thanks for the suggestion. We have decided to add this functionality but without needing to add a method to ignore the form data names. Instead we will make it so that setting IgnoreFormDataNames to * will be an indication that all form names should be ignored.
We'll get back to you once this is available.
-Jason Fauchelle
fujiiface
Posted on
Jun 19 2014
Hi Jason,
Thanks for the response and the update. I am looking forward to the update! This was the biggest sticking point I encountered from the first demo I gave to my organization and they will be glad to hear that this is in the pipeline.
Raygun
Jason Fauchelle
Posted on
Jun 27 2014
Hello fujiiface
The ability to ignore all form fields or headers or servervariables or cookies is now available in Raygun4Net 3.0. You can read more information about this here: https://raygun.io/blog/2014/06/raygun4net-3-0/
the ignoreFormDataNames option has been removed and replaced with four separate options. Each of these options could be set to * to indicate that everything should be excluded and never sent to Raygun.io. They can each still of course be set to a comma separated black-list of keys to exclude.
Hope it works well for you.
-Jason Fauchelle
fujiiface
Posted on
Jul 01 2014
Hi Jason,
Thank you for the update. This is great and will go a long way towards satisfying the security concerns from both my data and network security teams. The response to acceptance to implementation time of you and your teams is really great.
Thank you for your development and support efforts!