Nlog.Gelfhttp 1.0.10

dotnet add package Nlog.Gelfhttp --version 1.0.10
NuGet\Install-Package Nlog.Gelfhttp -Version 1.0.10
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nlog.Gelfhttp" Version="1.0.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nlog.Gelfhttp --version 1.0.10
#r "nuget: Nlog.Gelfhttp, 1.0.10"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Nlog.Gelfhttp as a Cake Addin
#addin nuget:?package=Nlog.Gelfhttp&version=1.0.10

// Install Nlog.Gelfhttp as a Cake Tool
#tool nuget:?package=Nlog.Gelfhttp&version=1.0.10

NLog.GelfHttp Lib


The library which extends NLog with custom target which supports multithreading and allows write log messages directly to Graylog by http.

Using


  1. In nlog.config add into <extensions> tag this assembly:
      <extensions>
		  <add assembly="NLog.GelfHttp"/>
	  </extensions>
  1. Add target with type "GelfHttp":
      <target xsi:type="GelfHttp" name="gelf" serverUrl="https://{graylogIp}:{port}/gelf" 
            facility="facility" username="username" password="password" threads="1"/>
  1. The last setting is logger:
      <logger name="*" minlevel="Trace" writeTo="gelf" />
  1. Enjoy!

Parameters of GelfHttp target


Required parameters:
1. serverUrl - input endpoint of Graylog to receive log messages by http.
2. threads - number of threads which will be used for sending messages.
3. facility - facility name.
Optional parameters:
1. maxPending - max number of incomplete requests. By default is set to 250.
2. queueSize - size of queue which contains all log messages that should be send. By default is set to 2000.
3. username - username for authentication to Graylog. If username and password were not set it is expected that your Ip exists in white list.
4. password - username for authentication to Graylog.
5. debug - will be enabled if set value "true" or "1". This setting allows write to internal logger about request was successful or failed.
6. layout - works like in usual NLog library.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.10 4,138 6/4/2019
1.0.9 1,172 4/23/2019
1.0.8 1,062 4/16/2019
1.0.7 1,042 4/16/2019
1.0.6 1,298 2/19/2019
1.0.5 1,127 2/19/2019
1.0.4 1,172 1/22/2019
1.0.3 1,177 12/28/2018
1.0.1 1,168 12/21/2018
1.0.0 1,535 12/21/2018

Added send errors to internal logger