NLog.Mongo icon indicating copy to clipboard operation
NLog.Mongo copied to clipboard

MongoDB Target for NLog

Results 31 NLog.Mongo issues
Sort by recently updated
recently updated
newest added

Bumps [NLog](https://github.com/NLog/NLog) from 5.0.2 to 5.0.4. Release notes Sourced from NLog's releases. NLog 5.0.4 Fixes #5051 Fixed embedded resource with ILLink.Descriptors.xml to avoid IL2007 (#5051) (@​snakefoot) NLog 5.0.3 Improvements #5034...

dependencies

GetConnectionString method now supports for .net standart.

Upon using the NLog.Mongo in .Net Core Class Library and use it as a reference in a console app it returns the "Invalid Token". The solution is just the same...

Add support for connecting with certificates. Add docker compose file for running mongo in a docker container.

Add support for specifying an [SSL cert to use when connecting to Mongo](https://mongodb.github.io/mongo-csharp-driver/2.10/reference/driver/ssl/). Perhaps more broadly allow configuration of [MongoClientSettings](https://mongodb.github.io/mongo-csharp-driver/2.10/apidocs/html/T_MongoDB_Driver_MongoClientSettings.htm) or allow the application to create the MongoClient instance via...

Hi, What permissions does the user need in order to write to the log? It seems that in order to write to the log there is a need to use...

Hi! I use NLog 4.5.11, NLog.Mongo 4.6.0.68 and MongoDB 4.0.6 My NLog.Config: ``` ``` My code is: ``` NLog.Logger logger = NLog.LogManager.GetCurrentClassLogger(); if (args.Length == 0) { logger.Info("This process cannot...

We store our connection strings and credentials outside of our app in a secrets vault, but we like to keep the rest of our config in config files. We marry...

### myconfig: ` ` ### error message Unable to authenticate using sasl protocol mechanism SCRAM-SHA-1. ---> MongoDB.Driver.MongoCommandException: Command saslStart failed: Authentication failed..

Hi, I had been trying to save a error trace to mongodb using NLog.Mongo using: ` ` adding properties with `public void Save(Trace trace) { var logger = NLog.LogManager.GetCurrentClassLogger(); var...