Skip to content

Commit 08a6a6b

Browse files
committed
Added notes for 3.0 WIP
1 parent 08a34bd commit 08a6a6b

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 3.0.0
2+
- [#76](https://github.com/serilog/serilog-sinks-splunk/issues/76) Add strong naming/signing to `Serilog.Sinks.Splunk`.
3+
- [#88](https://github.com/serilog/serilog-sinks-splunk/issues/88) Split Sinks into separate packages for maintainability.
4+
- *NOTE* Breaking changes. TCP & UDP Sinks moved to new packages
5+
- Serilog.Sinks.Splunk (3.0.x)
6+
- Serilog.Sinks.Splunk.TCP (1.0.x)
7+
- Serilog.Sinks.Splunk.UDP (1.0.x)
8+
9+
## 2.5.0
10+
- [#78](https://github.com/serilog/serilog-sinks-splunk/issues/78) Update `System.Net.Http` references to match other similar sinks.
11+
- [#79](https://github.com/serilog/serilog-sinks-splunk/issues/79) Addition of optional `LoggingLevelSwitch` param to EventCollector sink.
12+
113
## 2.4.0
214
- [#62](https://github.com/serilog/serilog-sinks-splunk/issues/62) Default fields added by Serilog to splunk
315
- [#63](https://github.com/serilog/serilog-sinks-splunk/issues/63) Possible thread leak when ILogger instances are disposed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
11
# Serilog.Sinks.Splunk
22

3-
[![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk)
4-
[![NuGet Version](http://img.shields.io/nuget/v/Serilog.Sinks.Splunk.svg?style=flat)](https://www.nuget.org/packages/Serilog.Sinks.Splunk/)
3+
[![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk) ![NuGet Version](https://buildstats.info/nuget/Serilog.Sinks.Splunk)
54
[![Join the chat at https://gitter.im/serilog/serilog](https://img.shields.io/gitter/room/serilog/serilog.svg)](https://gitter.im/serilog/serilog)
65

76
A Serilog sink that writes events to the [Splunk](https://splunk.com). Supports .NET 4.5+, .NET Core, and platforms compatible with the [.NET Platform Standard](https://github.com/dotnet/corefx/blob/master/Documentation/architecture/net-platform-standard.md) 1.1 including Windows 8 & UWP, Windows Phone and Xamarin.
87

9-
[![Package Logo](http://serilog.net/images/serilog-sink-nuget.png)](http://nuget.org/packages/serilog.sinks.splunk)
8+
[![Package Logo](https://serilog.net/images/serilog-sink-nuget.png)](https://nuget.org/packages/serilog.sinks.splunk)
109

11-
**Package** - [Serilog.Sinks.Splunk](http://nuget.org/packages/serilog.sinks.splunk)
10+
**Package** - [Serilog.Sinks.Splunk](https://nuget.org/packages/serilog.sinks.splunk)
1211

1312
## Getting started
1413

15-
To get started install the *Serilog.Sinks.Splunk* package from Visual Studio's *NuGet* console:
14+
To get started install the *Serilog.Sinks.Splunk* package:
1615

1716
```powershell
1817
PM> Install-Package Serilog.Sinks.Splunk
1918
```
2019

20+
OR
21+
22+
```bash
23+
> dotnet add package Serilog.Sinks.Splunk
24+
```
25+
2126
Using the Event Collector (Splunk 6.3 and above)
2227

23-
```csharp
28+
```csharp
2429
var log = new LoggerConfiguration()
2530
.WriteTo.EventCollector("https://mysplunk:8088/services/collector", "myeventcollectortoken")
2631
.CreateLogger();

0 commit comments

Comments
 (0)