Structured logging - what is it, why is it useful and how do we do it in Asp.Net Core

preview_player
Показать описание
The concept of structured logging is often overlooked, but it's actually one of the most important tools that we have when it comes to maintaining a production application. That's why in this video we explain in very simple words what structured logging is, why is it important and how we implement structured logging in #AspnetCore.
#CSharp

Chapters:
1. Intro: 00:00
2. Structured logging in simple words: 01:10
3. Setup overview: Serilog and Seq: 04:33
4. Writing the first structured logs: 07:20
5. Analyzing structured logs in Seq: 16:07
6. Summary: 21:53
Рекомендации по теме
Комментарии
Автор

Note that the ILogger Log* methods' last argument is params, so we don't need the new object[] in every statement. Great video, will share this with colleagues!

GeirS