-
Notifications
You must be signed in to change notification settings - Fork 47
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
Add ability to ignore certs for Splunk in sink #26
Comments
I too am in need of this. Is there any plan for it? Dotnet core doesn't seem to have a cert validation callback like the original dot net does. |
@veccsolutions a new release is out with the |
Thanks! I'll be checking this out in the next couple of days. |
@merbla Thanks for exposing it. However, I can't specify whether to ignore it or not through the config files. I was able to write my own sink configuration method to do it using the one you have already created as a template. My custom configuration method is identical to yours except for the following changes.
|
@veccsolutions you are correct. The change was generally targeted at dotnet core and opening up the We would have overload the config with an Generally what frameworks are you targeting? |
Just to add to @merbla's remarks about being reluctant to add this - I think we'd expose ourselves to some criticism by dealing with SSL certificate policy in the sink. (Even in the case of self-signed certificates, it's usually better to add the certificate to the list trusted by the client machine rather than disable validation entirely.) |
That's fine. I'll continue with my separate config method. I just need to be able to do it without managing the certs on the local system and still using the config file for different deployment targets like local development vs QA vs Production etc. |
Closing this for now. |
From #23
In a development environment it would be helpful to ignore sinks.
An implementation similar to the Seq sink may be appropriate.
The text was updated successfully, but these errors were encountered: