We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffd38c1 commit 7a17c41Copy full SHA for 7a17c41
README.md
@@ -21,23 +21,6 @@ Using the new Event Collector in Splunk 6.3
21
22
```csharp
23
var log = new LoggerConfiguration()
24
- .WriteTo.SplunkViaEventCollector("https://mysplunk:8088/services/collector", "myeventcollectortoken")
+ .WriteTo.EventCollector("https://mysplunk:8088/services/collector", "myeventcollectortoken")
25
.CreateLogger();
26
-```
27
-
28
-Set up to log via TCP
29
30
-```csharp
31
-var log = new LoggerConfiguration()
32
- .WriteTo.SplunkViaTcp("127.0.0.1", 10001)
33
- .CreateLogger();
34
35
36
-Or maybe UDP
37
38
39
40
- .WriteTo.SplunkViaUdp("127.0.0.1", 10000)
41
42
43
+```
0 commit comments