我尝试使用NLog将日志写入远程计算机上的Logststash。这是配置文件:
<nlog throwExceptions="true" xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="logfile" xsi:type="Network" address="http://52.160.89.158:8080" />
</targets>
<rules>
<logger name="*" minlevel="Info" writeTo="logfile" />
</rules>
</nlog>
当然,数据还没有写入Logstash ...... 但是我使用在Postman中生成的simpe HTTP POST消息成功地将消息写入Logstash,这意味着我没有连接问题...有什么建议吗?