翼度科技»论坛 编程开发 .net 查看内容

.Net Core中使用DiagnosticSource进行日志记录

3

主题

3

帖子

9

积分

新手上路

Rank: 1

积分
9
System.Diagnostics.DiagnosticSource 可以丰富地记录程序中地日志,包括不可序列化的类型(例如 HttpResponseMessage 或 HttpContext)。
System.Diagnostics.DiagnosticSource 通过订阅发布模式运行,我们可以根据自己地需要发现数据源并订阅感兴趣的数据源。
 
DiagnosticSource 与 ILogger 区别
一般来说,DiagnosticSource主要强类型诊断,它可以记录诸如"Microsoft.AspNetCore.Mvc.ViewNotFound"之类的事件。
而,ILogger用于记录更具体的信息,例如"Executing JsonResult, writing value {Value}。
 
示例
添加必要的依赖项
我们首先将需要的 NuGet 包添加到我们的project中
  1. [/code] 
  2. [b]发出Event[/b]
  3. 首先需要注入DiagnosticSource, 然后通过其write方法发出Event
  4. [code]private readonly ILogger<WeatherForecastController> _logger;
  5. private readonly DiagnosticSource _diagnosticSource;
  6. const string DKEY = "Invoke_WeatherForecast";
  7. public WeatherForecastController(ILogger<WeatherForecastController> logger, DiagnosticSource diagnosticSource)
  8. {
  9.     _logger = logger;
  10.     _diagnosticSource = diagnosticSource;
  11. }
  12. [HttpGet]
  13. public string Get()
  14. {
  15.     if (_diagnosticSource.IsEnabled(DKEY))
  16.     {
  17.         _diagnosticSource.Write(DKEY,
  18.             new
  19.             {
  20.                 time = DateTime.Now,
  21.                 data = "ttt"
  22.             });
  23.     }
  24.     return "OK";
  25. }
复制代码
 
定义Listener
有多种方法可以创建使用DiagnosticSource事件的Listener,但最简单的方法之一是使用Microsoft.Extensions.DiagnosticAdapter包提供的功能。
要创建侦听器,您可以创建一个类。然后,您可以使用属性来装饰该方法[DiagnosticName],并提供要侦听的事件名称:
  1. public class DemoDiagnosticListener
  2. {
  3.     const string DKEY = "Invoke_WeatherForecast";
  4.     [DiagnosticName(DKEY)]
  5.     public virtual void CallWeatherForecast (DateTime time, string  data)
  6.     {
  7.         Console.WriteLine($"WeatherForecast called: {time} {data}");
  8.     }
  9. }
复制代码
 
启动监听
剩下的就是在Program.cs中启动监听
  1. var app = builder.Build();
  2. var diagnosticListener = app.Services.GetRequiredService<DiagnosticListener>();
  3. var listener = new DemoDiagnosticListener();
  4. diagnosticListener.SubscribeWithAdapter(listener);
  5. ...
  6. app.Run();
复制代码
 
效果

 

来源:https://www.cnblogs.com/chenyishi/p/18068309
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具