首页 > 代码库 > NLog 通过http保存日志
NLog 通过http保存日志
from:https://github.com/NLog/NLog/wiki/WebService-target
Example config:
<nlog throwExceptions=‘true‘> <targets> <target type=‘WebService‘ name=‘ws‘ url=‘http://localhost:1234/logme‘ protocol=‘HttpPost‘ encoding=‘UTF-8‘ > <parameter name=‘param1‘ type=‘System.String‘ layout=‘${message}‘/> <parameter name=‘param2‘ type=‘System.String‘ layout=‘${level}‘/> </target> </targets> <rules> <logger name=‘*‘ writeTo=‘ws‘></logger> </rules></nlog>
Example API controller
public class LogMeController : ApiController{ /// <summary> /// We need a complex type for modelbinding because /// of content-type: "application/x-www-form-urlencoded" /// in <see cref="WebServiceTarget"/> /// </summary> public class ComplexType { public string Param1 { get; set; } public string Param2 { get; set; } } /// <summary> /// Post /// </summary> public void Post([FromBody] ComplexType complexType) { //do something }}
NLog 通过http保存日志
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。