Skip to content

Instantly share code, notes, and snippets.

View clabnet's full-sized avatar

Claudio Barca clabnet

  • TEORESI Group
  • Turin - Italy
  • X @clabnet
View GitHub Profile
@clabnet
clabnet / App.config
Created February 4, 2019 10:28
Logstash NLog Target
<target name="logstash" xsi:type="Network" address="tcp://host:port" newLine="true">
<layout xsi:type="JsonLayout" includeAllProperties="false">
<attribute name="@timestamp" layout="${date:format=yyyy-MM-ddTHH\:mm\:ss.fffZ}" />
<attribute name="level" layout="${level:upperCase=true}"/>
<attribute name="category" layout="${logger}" />
<attribute name="message" layout="${message}" />
<attribute name="environment" layout="production" />
<attribute name="extra" layout="value" />
</layout>
</target>