91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 7.43KB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-02-23
  • 語(yǔ)言: C#
  • 標(biāo)簽: elasticsearc??log4net??NET??cs??日志??

資源簡(jiǎn)介

【實(shí)例簡(jiǎn)介】

數(shù)據(jù)采集有兩種方案Beats或Logstash,Logstash支持很多種數(shù)據(jù)源,有l(wèi)og4j但沒(méi)有l(wèi)og4net,本想使用log4net.redis redis logstash的方式實(shí)現(xiàn)日志收集。無(wú)意間發(fā)現(xiàn)了 log4net.ElasticSearch可以直接寫(xiě)日志到ES,經(jīng)過(guò)測(cè)試非常好用、方便。


資源截圖

代碼片段和文件信息

using?System;
using?log4net;

namespace?log4net.ES.Example
{
????class?Program
????{
????????//?Create?a?new?logging?instance
????????private?static?readonly?ILog?_log?=?LogManager.GetLogger(typeof(Program));

????????static?void?Main(string[]?args)
????????{
????????????//?Most?basic?logging?example.
????????????_log.ErrorFormat(“System?Error?{0}“?“Divide?by?zero?error.“);

????????????
????????????//?Log?a?message?with?an?exeption?object
????????????_log.Error(“System?Error“?new?Exception(“Something?terrible?happened.“));


????????????//?Log?an?exception?object?with?custom?fields?in?the?Data?property
????????????Exception?newException?=?new?Exception(“There?was?a?system?error“);
????????????newException.Data.Add(“CustomProperty“?“CustomPropertyValue“);
????????????newException.Data.Add(“SystemUserID“?“User43“);

????????????_log.Error(“Something?broke.“?newException);

????????}
????}

?
}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2016-01-31?03:19??log4net.ES.Example-master\
?????文件????????1568??2016-01-31?03:19??log4net.ES.Example-master\.gitignore
?????文件????????1074??2016-01-31?03:19??log4net.ES.Example-master\LICENSE
?????文件?????????103??2016-01-31?03:19??log4net.ES.Example-master\README.md
?????文件?????????999??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example.sln
?????目錄???????????0??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example\
?????文件????????1921??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example\App.config
?????文件?????????914??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example\Program.cs
?????目錄???????????0??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example\Properties\
?????文件????????1694??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example\Properties\AssemblyInfo.cs
?????文件????????3121??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example\log4net.ES.Example.csproj
?????文件?????????212??2016-01-31?03:19??log4net.ES.Example-master\log4net.ES.Example\packages.config

評(píng)論

共有 條評(píng)論