-
Notifications
You must be signed in to change notification settings - Fork 5
Provide guidance on logging frameworks #5
Comments
Remove logging of exceptions, follow-up via #5
…delines (#6) * Update README.md * Use unordered lists * Extend OpenAPI specifications * Remove logging of exceptions Remove logging of exceptions, follow-up via #5 * Add "Contributions" & "License" * Change License to Codit * Add icons Signed-off-by: Tom Kerkhove <[email protected]> * Update README.md
Do we limit this to exceptions, or logging in general? For cloud, I'd also vouch for a console logger in addition to Application Insights. This is especially handy when running in a container, or running the api locally. This allows For on-prem, ETW is cool, I'm a fan, but it does involve users having to know tools to parse these ETW events, and it's harder to view a live trace of your current system. Is it worth it? Also, for on-prem I think Application Insights might still make sense. With regards to using an actual logging framework, I'd suggest one that promotes the use of structured logging. I'd also make it clear that the logging framework chosen it's just a suggestion. I've used a bazillion logging frameworks already, and each one has its own benefits. |
It certainly is not limited to exceptions and changed the description to reflect this.
|
I agree, on the other hand it would be nice to have a a single approach (cloud and on-prem) - e.g. Serilog - and use different sink. Does it make sense?
great point |
I like Serilog yes, although we'd need to take a look if it integrates correctly with Application Insights ( We could use 2 sinks (console+AI) if it works correctly. |
Had a quick look at Serilog + AI yesterday, below my findings:
Open questions:
Conceptually I think everything should be in Serilog, and the configuration can decide on what to log where. However that seems like a huge task, and pretty much guaranteed to be out-of-date as soon as we release it. Is there a middle ground? Is there benefit in still using Serilog just for messages? |
Thanks for sharing your findings. I could live with a mixture to be honest where Serilog is doing traces, events and exceptions but the question is - Will they work together if we use AI packages for request & dependency tracking? Another downside is the lack of support for |
Created an issue with Serilog for the operation_Id |
Ok to use AI with the default logging mechanism of aspnetcore. It's important to be practical so the logging mechanism should be easily configurable to sink to AI, console and file system. |
For practical reasons, let’s move this to the “should have” (level two) |
In the API guidelines, I would emphasize on how / what to log (using operation-id's, correlation-ids, ...) and not advice on using a certain Logging Framework. Instead, I'd suggest to make use of |
Sounds good to me, leaning towards that approach as well nowadays. We should also provide guidance what not to log ie due to GDPR |
Provide guidance on logging frameworks for ie logging exceptions.
Ideas:
The text was updated successfully, but these errors were encountered: