Serilog.Sinks.Splunk 4.0.0-featurese-00002

This is a prerelease version of Serilog.Sinks.Splunk.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.Splunk --version 4.0.0-featurese-00002
                    
NuGet\Install-Package Serilog.Sinks.Splunk -Version 4.0.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" Version="4.0.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" Version="4.0.0-featurese-00002" />
                    
Directory.Packages.props
<PackageReference Include="Serilog.Sinks.Splunk" />
                    
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 --version 4.0.0-featurese-00002
                    
#r "nuget: Serilog.Sinks.Splunk, 4.0.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@4.0.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&version=4.0.0-featurese-00002&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Serilog.Sinks.Splunk&version=4.0.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 is compatible.  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 is compatible.  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 (19)

Showing the top 5 NuGet packages that depend on Serilog.Sinks.Splunk:

Package Downloads
Serilog.Builder

Builder with my serilog common settings for use Console, Seq and Splunk sinks.

IkeMtz.NRSRx.Logging.Splunk

Package Description

Serilog.Sinks.Splunk.TCP

The Splunk TCP Sink for Serilog

Relativity.Transfer.SDK

Relativity Transfer SDK allows performing high-throughput transfers of files from and to Relativity environment.

Serilog.Sinks.Splunk.UDP

The Splunk UDP Sink for Serilog

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.1.1-dev-00153 1,357 3/17/2025
5.1.1-dev-00151 431 2/21/2025
5.1.1-dev-00150 231 2/21/2025
5.1.1-dev-00147 777 1/27/2025
5.1.1-dev-00146 242 1/27/2025
5.1.1-dev-00145 240 1/27/2025
5.1.1-dev-00144 240 1/27/2025
5.1.1-dev-00140 270 1/10/2025
5.1.1-dev-00138 248 1/9/2025
5.1.1-dev-00135 274 1/3/2025
5.1.1-dev-00133 247 1/2/2025
5.1.1-dev-00132 225 1/2/2025
5.1.1-dev-00131 213 1/2/2025
5.1.1-dev-00118 361 12/10/2024
5.1.1-dev-00117 246 12/10/2024
5.1.0 1,348,396 11/13/2024
5.1.0-dev-00114 258 11/13/2024
5.1.0-dev-00112 263 11/13/2024
5.1.0-dev-00110 248 11/12/2024
5.0.2-dev-00107 281 10/25/2024
5.0.2-dev-00105 261 10/25/2024
5.0.2-dev-00102 1,982 10/10/2024
5.0.2-dev-00100 241 10/10/2024
5.0.2-dev-00099 228 10/10/2024
5.0.2-dev-00098 253 10/10/2024
5.0.2-dev-00092 315 9/23/2024
5.0.2-dev-00090 400 9/9/2024
5.0.2-dev-00088 341 8/22/2024
5.0.1 564,908 8/17/2024
5.0.1-dev-00085 227 7/29/2024
5.0.1-dev-00083 304 7/19/2024
5.0.1-dev-00081 260 7/12/2024
5.0.1-dev-00079 299 7/9/2024
5.0.0 654,536 6/12/2024
5.0.0-dev-00077 281 6/12/2024
5.0.0-dev-00075 269 6/6/2024
5.0.0-dev-00073 300 6/5/2024
5.0.0-dev-00070 261 6/5/2024
4.1.1-dev-00067 525 5/30/2024
4.1.1-dev-00065 308 5/28/2024
4.1.1-dev-00063 308 5/23/2024
4.1.1-dev-00061 327 5/17/2024
4.1.1-dev-00059 300 5/17/2024
4.1.0 284,129 5/3/2024
4.0.5-dev-00056 277 5/3/2024
4.0.5-dev-00054 289 4/30/2024
4.0.5-dev-00048 301 4/19/2024
4.0.4 126,223 4/19/2024
4.0.4-dev-00047 260 4/19/2024
4.0.4-dev-00044 261 4/19/2024
4.0.4-dev-00042 319 4/17/2024
4.0.4-dev-00039 343 4/9/2024
4.0.3 41,118 4/9/2024
4.0.3-dev-00036 290 4/9/2024
4.0.3-dev-00034 299 4/9/2024
4.0.3-dev-00030 232 4/5/2024
4.0.2 16,586 4/5/2024
4.0.2-dev-00029 220 4/5/2024
4.0.1 14,848 4/3/2024
4.0.1-dev-00023 209 4/5/2024
4.0.1-dev-00019 204 4/3/2024
4.0.0 93,524 4/3/2024
4.0.0-master-00012 235 4/3/2024
4.0.0-featurese-00003 1,117 4/3/2024
4.0.0-featurese-00002 1,073 4/3/2024
4.0.0-dev-00016 211 4/3/2024
4.0.0-dev-00015 234 4/3/2024
4.0.0-dev-00013 220 4/3/2024
4.0.0-dev-00011 233 4/3/2024
4.0.0-dev-00010 213 4/3/2024
4.0.0-dev-00009 259 4/3/2024
4.0.0-dev-00008 222 4/3/2024
4.0.0-dev-00007 1,068 4/3/2024
4.0.0-dev-00006 1,083 4/3/2024
4.0.0-dev-00005 1,117 4/3/2024
4.0.0-dev-00001 1,082 4/3/2024
3.7.0 6,384,877 11/7/2021
3.7.0-dev-00332 2,281 11/7/2021
3.6.0 2,380,780 10/15/2020
3.6.0-dev-00292 1,232 10/15/2020
3.5.0 59,222 10/12/2020
3.5.0-dev-00286 1,335 10/12/2020
3.4.0 563,707 7/2/2020
3.4.0-dev-00282 1,402 10/12/2020
3.4.0-dev-00276 1,295 7/2/2020
3.3.0 2,284,597 6/20/2019
3.3.0-dev-00260 1,471 6/20/2019
3.3.0-dev-00258 1,463 6/17/2019
3.3.0-dev-00255 1,491 6/17/2019
3.2.0 51,343 5/15/2019
3.2.0-dev-00252 1,405 6/16/2019
3.2.0-dev-00247 1,651 5/2/2019
3.2.0-dev-00245 1,532 4/29/2019
3.2.0-dev-00243 1,622 4/10/2019
3.2.0-dev-00242 1,477 4/10/2019
3.2.0-dev-00241 1,388 4/10/2019
3.1.0 84,296 4/10/2019
3.1.0-dev-00236 1,506 4/10/2019
3.1.0-dev-00234 1,489 4/10/2019
3.1.0-dev-00229 1,511 4/4/2019
3.1.0-dev-00228 1,609 4/4/2019
3.0.0 28,225 3/15/2019
3.0.0-dev-00223 3,323 11/27/2018
3.0.0-dev-00221 1,938 10/31/2018
3.0.0-dev-00219 1,825 10/8/2018
3.0.0-dev-00217 2,740 5/8/2018
3.0.0-dev-00212 2,339 5/1/2018
3.0.0-dev-00210 2,206 4/27/2018
2.6.0-dev-00206 2,387 3/7/2018
2.6.0-dev-00204 2,289 3/7/2018
2.5.0 1,754,105 1/23/2018
2.5.0-dev-00200 2,351 1/15/2018
2.5.0-dev-00198 2,435 12/12/2017
2.4.0 127,557 9/13/2017
2.4.0-dev-00194 2,118 9/13/2017
2.4.0-dev-00191 2,020 9/13/2017
2.3.1-dev-00188 2,026 9/13/2017
2.3.1-dev-00184 2,037 9/12/2017
2.3.1-dev-00183 2,115 8/31/2017
2.3.1-dev-00180 2,099 8/17/2017
2.3.0 33,018 6/21/2017
2.3.0-dev-00176 2,083 6/16/2017
2.2.1 8,852 5/28/2017
2.2.1-dev-00174 2,176 6/16/2017
2.2.1-dev-00170 2,077 6/3/2017
2.2.1-dev-00166 2,056 5/28/2017
2.2.0-dev-00162 2,172 5/26/2017
2.2.0-dev-00159 2,065 5/25/2017
2.2.0-dev-00157 2,151 5/21/2017
2.2.0-dev-00153 2,106 5/20/2017
2.1.3 43,401 3/3/2017
2.1.3-dev-00142 2,067 3/3/2017
2.1.2 16,437 1/28/2017
2.1.2-dev-00139 2,222 1/27/2017
2.1.2-dev-00135 2,042 1/27/2017
2.1.1 9,257 10/25/2016
2.1.1-dev-00130 2,054 10/25/2016
2.1.1-dev-00128 2,090 10/25/2016
2.1.1-dev-00126 2,012 10/7/2016
2.1.0 3,284 10/7/2016
2.1.0-dev-00122 2,052 10/7/2016
2.1.0-dev-00119 2,004 10/6/2016
2.1.0-dev-00116 2,081 10/6/2016
2.1.0-dev-00113 2,073 8/5/2016
2.0.1 44,502 7/1/2016
2.0.0-rc-93 2,062 6/28/2016
2.0.0-rc-88 2,250 6/2/2016
2.0.0-rc-86 2,044 6/2/2016
2.0.0-rc-77 2,121 5/18/2016
1.8.83 4,743 5/25/2016
1.8.81 2,930 5/25/2016
1.8.80 2,966 5/25/2016
1.7.70 8,000 3/15/2016
1.7.61 3,423 11/13/2015
1.6.52 3,333 10/13/2015
1.6.51 3,010 10/13/2015
1.6.49 3,027 10/13/2015
1.6.42 2,955 10/12/2015
1.5.31 3,558 9/29/2015
1.5.30 6,125 5/19/2015
1.5.25 3,206 4/18/2015
1.5.24 3,220 4/11/2015
1.5.21 3,084 4/11/2015
1.5.19 3,064 4/1/2015
1.5.18 3,075 3/30/2015
1.5.17 2,967 3/27/2015
1.5.14 3,046 3/27/2015
1.5.13 3,071 3/27/2015
1.5.8 3,548 2/20/2015
1.5.7 3,363 2/20/2015
1.4.182 3,371 2/15/2015
1.4.168 3,168 2/8/2015
1.4.155 3,038 2/1/2015
1.4.139 3,173 1/23/2015
1.4.118 3,036 1/13/2015
1.4.113 3,016 1/6/2015
1.4.102 3,440 12/21/2014
1.4.99 3,439 12/18/2014
1.4.97 3,311 12/18/2014
1.4.76 3,258 12/8/2014
1.4.39 3,267 11/26/2014
1.4.34 3,136 11/24/2014
1.4.28 3,136 11/24/2014
1.4.27 3,181 11/23/2014
1.4.23 3,259 11/21/2014
1.4.21 3,135 11/21/2014
1.4.18 3,402 11/18/2014
1.4.15 4,162 11/4/2014
1.4.14 3,021 10/23/2014
1.4.13 3,023 10/23/2014
1.4.12 3,041 10/12/2014
1.4.11 3,071 10/8/2014
1.4.10 3,115 9/26/2014
1.4.9 3,119 9/17/2014
1.4.8 3,009 9/11/2014
1.4.7-pre 2,208 9/1/2014
1.4.6-pre 2,233 8/31/2014
1.4.5-pre 2,210 8/27/2014
1.4.4 3,085 8/27/2014
1.4.3 3,070 8/25/2014
1.4.2 3,056 8/23/2014
1.4.1 3,116 8/23/2014
1.3.43 3,145 8/4/2014
1.3.42 3,002 7/30/2014
1.3.41 3,078 7/28/2014
1.3.40 3,060 7/26/2014
1.3.39 3,047 7/25/2014
1.3.36 3,089 7/20/2014
1.3.35 3,061 7/17/2014
1.3.34 3,104 7/6/2014
1.3.33 3,072 6/30/2014
1.3.30 3,159 6/19/2014
1.3.29 3,061 6/19/2014
1.3.28 3,130 6/19/2014
1.3.27 3,124 6/18/2014
1.3.25 3,065 6/9/2014
1.3.24 3,078 5/21/2014
1.3.23 3,053 5/20/2014
1.3.20 3,064 5/18/2014
1.3.19 3,112 5/17/2014
1.3.18 3,079 5/17/2014
1.3.17 3,099 5/17/2014
1.3.16 3,062 5/17/2014
1.3.15 2,990 5/16/2014
1.3.14 3,077 5/16/2014
1.3.13 3,086 5/16/2014
1.3.12 3,094 5/14/2014
1.3.7 3,180 5/11/2014
1.3.6 3,026 5/9/2014
1.3.5 3,096 5/6/2014
1.3.4 3,090 5/4/2014
1.3.3 3,122 4/28/2014
1.3.1 3,268 4/26/2014
1.2.53 3,139 4/26/2014
1.2.52 3,182 4/24/2014
1.2.51 3,183 4/18/2014
1.2.50 3,249 4/18/2014
1.2.49 3,303 4/17/2014
1.2.48 3,219 4/14/2014
1.2.47 3,295 4/14/2014
1.2.45 3,257 4/13/2014
1.2.44 3,266 4/9/2014
1.2.41 3,179 4/7/2014
1.2.40 3,138 4/7/2014
1.2.39 3,114 3/29/2014
1.2.37 3,229 3/29/2014
1.2.29 3,084 3/16/2014
1.2.26 3,127 3/12/2014
1.2.25 3,240 2/20/2014
0.9.9 18,887 11/23/2013