Skip to content

Commit 83e7a94

Browse files
authored
Merge pull request #36 from merbla/build-rework
Readme Update & Serilog target
2 parents bcb3bb4 + 2bec56c commit 83e7a94

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
# serilog-sinks-splunk
2-
[![Package Logo](http://serilog.net/images/serilog-sink-nuget.png)](http://nuget.org/packages/serilog.sinks.splunk)
1+
# Serilog.Sinks.Splunk
32

43
[![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk)
54
[![NuGet Version](http://img.shields.io/nuget/v/Serilog.Sinks.Splunk.svg?style=flat)](https://www.nuget.org/packages/Serilog.Sinks.Splunk/)
5+
[![Join the chat at https://gitter.im/serilog/serilog](https://img.shields.io/gitter/room/serilog/serilog.svg)](https://gitter.im/serilog/serilog)
6+
7+
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.
68

7-
A sink for Serilog that writes events to [Splunk](https://splunk.com). Moved from the [main Serilog repository](https://github.com/serilog/serilog) for independent versioning. Published to [NuGet](http://www.nuget.org/packages/serilog.sinks.splunk).
9+
[![Package Logo](http://serilog.net/images/serilog-sink-nuget.png)](http://nuget.org/packages/serilog.sinks.splunk)
810

911
**Package** - [Serilog.Sinks.Splunk](http://nuget.org/packages/serilog.sinks.splunk)
10-
| **Platforms** - .NET 4.5+, PCL
1112

1213
## Getting started
1314

@@ -17,12 +18,21 @@ To get started install the *Serilog.Sinks.Splunk* package from Visual Studio's *
1718
PM> Install-Package Serilog.Sinks.Splunk
1819
```
1920

20-
Using the new Event Collector in Splunk 6.3
21+
Using the Event Collector (Splunk 6.3 and above)
2122

2223
```csharp
2324
var log = new LoggerConfiguration()
2425
.WriteTo.EventCollector("https://mysplunk:8088/services/collector", "myeventcollectortoken")
2526
.CreateLogger();
2627
```
2728

28-
More information is available [here](https://github.com/serilog/serilog-sinks-splunk/wiki).
29+
More information is available on the [wiki](https://github.com/serilog/serilog-sinks-splunk/wiki).
30+
31+
### Build status
32+
33+
Branch | AppVeyor | Travis
34+
------------- | ------------- |-------------
35+
master | [![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al/branch/master?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk/branch/dev) | ![](https://travis-ci.org/serilog/serilog-sinks-splunk.svg?branch=master)
36+
dev | [![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al/branch/dev?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk/branch/master) | ![](https://travis-ci.org/serilog/serilog-sinks-splunk.svg?branch=dev)
37+
38+
_Serilog is copyright © 2013-2016 Serilog Contributors - Provided under the [Apache License, Version 2.0](http://apache.org/licenses/LICENSE-2.0.html). Needle and thread logo a derivative of work by [Kenneth Appiah](http://www.kensets.com/)._

src/Serilog.Sinks.Splunk/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Serilog": "2.0.0"
24+
"Serilog": "2.2.0"
2525
},
2626
"frameworks": {
2727
"net4.5": {

0 commit comments

Comments
 (0)