Serilog.Sinks.Splunk.UDP 1.5.0-featurese-00002

This is a prerelease version of Serilog.Sinks.Splunk.UDP.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.Splunk.UDP --version 1.5.0-featurese-00002
                    
NuGet\Install-Package Serilog.Sinks.Splunk.UDP -Version 1.5.0-featurese-00002
                    
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="Serilog.Sinks.Splunk.UDP" Version="1.5.0-featurese-00002" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Serilog.Sinks.Splunk.UDP" Version="1.5.0-featurese-00002" />
                    
Directory.Packages.props
<PackageReference Include="Serilog.Sinks.Splunk.UDP" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Serilog.Sinks.Splunk.UDP --version 1.5.0-featurese-00002
                    
#r "nuget: Serilog.Sinks.Splunk.UDP, 1.5.0-featurese-00002"
                    
#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.
#:package Serilog.Sinks.Splunk.UDP@1.5.0-featurese-00002
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Serilog.Sinks.Splunk.UDP&version=1.5.0-featurese-00002&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Serilog.Sinks.Splunk.UDP&version=1.5.0-featurese-00002&prerelease
                    
Install as a Cake Tool

Serilog.Sinks.Splunk

Build status NuGet Version Join the chat at https://gitter.im/serilog/serilog

A Serilog sink that writes events to the Splunk. Supports .NET 4.5+, .NET Core, and platforms compatible with the .NET Platform Standard net45, netstandard1.1, netstandard2.0.

Package Logo

Package - Serilog.Sinks.Splunk

Getting started

To get started install the Serilog.Sinks.Splunk package:

PM> Install-Package Serilog.Sinks.Splunk

OR

$ dotnet add package Serilog.Sinks.Splunk

If using the TCP or UDP sinks install the following packages

  • TCP: Serilog.Sinks.Splunk.TCP
  • UDP: Serilog.Sinks.Splunk.UDP

To start using the Splunk Event Collector (Splunk 6.3 and above), logging can be setup as follows.

var log = new LoggerConfiguration()
    .WriteTo.EventCollector("https://mysplunk:8088/services/collector/event", "myeventcollectortoken")
    .CreateLogger();

If using appsettings.json for configuration the following example illustrates using the Event Collector and Console sinks.

{
    "Serilog": {
        "Using": ["Serilog.Sinks.Console", "Serilog.Sinks.Splunk"],
        "MinimumLevel": "Information",
        "WriteTo": [{
                "Name": "Console"
            },
            {
                "Name": "EventCollector",
                "Args": {
                    "splunkHost": "http://splunk:8088",
                    "uriPath": "services/collector/event",
                    "eventCollectorToken": "00112233-4455-6677-8899-AABBCCDDEEFF"
                }
            }
        ],
        "Properties": {
            "Application": "Serilog Splunk Console Sample"
        }
    }
}

More information about Serilog is available on the wiki.

Build status

Branch AppVeyor
master Build status
dev Build status

Serilog is copyright © 2013-2016 Serilog Contributors - Provided under the Apache License, Version 2.0. Needle and thread logo a derivative of work by Kenneth Appiah.

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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
5.1.1-dev-00153 215 3/17/2025
5.1.1-dev-00151 139 2/21/2025
5.1.1-dev-00150 136 2/21/2025
5.1.1-dev-00147 143 1/27/2025
5.1.1-dev-00146 128 1/27/2025
5.1.1-dev-00145 127 1/27/2025
5.1.1-dev-00144 126 1/27/2025
5.1.1-dev-00140 133 1/10/2025
5.1.1-dev-00138 154 1/9/2025
5.1.1-dev-00135 182 1/3/2025
5.1.1-dev-00133 132 1/2/2025
5.1.1-dev-00132 118 1/2/2025
5.1.1-dev-00131 134 1/2/2025
5.1.1-dev-00118 145 12/10/2024
5.1.1-dev-00117 154 12/10/2024
5.1.0 1,227 11/13/2024
5.1.0-dev-00114 142 11/13/2024
5.1.0-dev-00112 134 11/13/2024
5.1.0-dev-00110 157 11/12/2024
5.0.2-dev-00107 148 10/25/2024
5.0.2-dev-00105 142 10/25/2024
5.0.2-dev-00102 157 10/10/2024
5.0.2-dev-00100 134 10/10/2024
5.0.2-dev-00099 146 10/10/2024
5.0.2-dev-00098 131 10/10/2024
5.0.2-dev-00092 135 9/23/2024
5.0.2-dev-00090 124 9/9/2024
5.0.2-dev-00088 158 8/22/2024
5.0.1 1,068 8/17/2024
5.0.1-dev-00085 140 7/29/2024
5.0.1-dev-00083 150 7/19/2024
5.0.1-dev-00081 118 7/12/2024
5.0.1-dev-00079 160 7/9/2024
5.0.0 1,020 6/12/2024
5.0.0-dev-00077 144 6/12/2024
5.0.0-dev-00075 164 6/6/2024
5.0.0-dev-00073 159 6/5/2024
5.0.0-dev-00070 152 6/5/2024
4.1.1-dev-00067 149 5/30/2024
4.1.1-dev-00065 159 5/28/2024
4.1.1-dev-00063 172 5/23/2024
4.1.1-dev-00061 181 5/17/2024
4.1.1-dev-00059 171 5/17/2024
4.1.0 910 5/3/2024
4.0.5-dev-00056 152 5/3/2024
4.0.5-dev-00054 134 4/30/2024
4.0.5-dev-00048 165 4/19/2024
4.0.4 36,128 4/19/2024
4.0.4-dev-00047 124 4/19/2024
4.0.4-dev-00044 154 4/19/2024
4.0.4-dev-00042 164 4/17/2024
4.0.4-dev-00039 152 4/9/2024
4.0.3 867 4/9/2024
4.0.3-dev-00036 181 4/9/2024
4.0.3-dev-00034 148 4/9/2024
4.0.3-dev-00030 167 4/5/2024
4.0.2 827 4/5/2024
4.0.2-dev-00029 153 4/5/2024
4.0.1 836 4/3/2024
4.0.1-dev-00023 168 4/5/2024
4.0.1-dev-00019 166 4/3/2024
4.0.0 1,073 4/3/2024
1.5.0 6,522 11/7/2021
1.5.0-master-00012 184 4/3/2024
1.5.0-featurese-00003 178 4/3/2024
1.5.0-featurese-00002 159 4/3/2024
1.5.0-dev-00332 460 11/7/2021
1.5.0-dev-00016 180 4/3/2024
1.5.0-dev-00015 161 4/3/2024
1.5.0-dev-00013 168 4/3/2024
1.5.0-dev-00011 172 4/3/2024
1.5.0-dev-00010 182 4/3/2024
1.5.0-dev-00009 171 4/3/2024
1.5.0-dev-00008 178 4/3/2024
1.5.0-dev-00007 171 4/3/2024
1.5.0-dev-00006 179 4/3/2024
1.5.0-dev-00005 152 4/3/2024
1.5.0-dev-00001 186 4/3/2024
1.4.0 8,655 7/2/2020
1.4.0-dev-00292 405 10/15/2020
1.4.0-dev-00286 461 10/12/2020
1.4.0-dev-00282 468 10/12/2020
1.4.0-dev-00276 474 7/2/2020
1.2.0 1,773 6/20/2019
1.2.0-dev-00260 613 6/20/2019
1.2.0-dev-00258 556 6/17/2019
1.2.0-dev-00255 580 6/17/2019
1.1.0 1,461 4/10/2019
1.1.0-dev-00252 571 6/16/2019
1.1.0-dev-00247 699 5/2/2019
1.1.0-dev-00245 619 4/29/2019
1.1.0-dev-00243 586 4/10/2019
1.1.0-dev-00242 607 4/10/2019
1.1.0-dev-00241 594 4/10/2019
1.1.0-dev-00236 597 4/10/2019
1.1.0-dev-00234 565 4/10/2019
1.0.0 1,536 3/15/2019
1.0.0-dev-00229 598 4/4/2019
1.0.0-dev-00228 618 4/4/2019
1.0.0-dev-00223 740 11/27/2018
1.0.0-dev-00221 728 10/31/2018
1.0.0-dev-00219 776 10/8/2018
1.0.0-dev-00217 1,222 5/8/2018
1.0.0-dev-00212 1,320 5/1/2018
1.0.0-dev-00210 1,205 4/27/2018