-
Notifications
You must be signed in to change notification settings - Fork 5
/
LeTarget.cs
128 lines (109 loc) · 3.83 KB
/
LeTarget.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
Logentries Log4Net Logging agent
Copyright 2010,2011 Logentries, Jlizard
Mark Lacomber <[email protected]>
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Net.Security;
using System.Net.Sockets;
using System.IO;
using NLog;
using NLog.Common;
using NLog.Config;
using NLog.Internal;
using NLog.Internal.NetworkSenders;
using NLog.Layouts;
using NLog.Targets;
namespace Le
{
[Target("Logentries")]
public sealed class LeTarget : TargetWithLayout
{
private SslStream sslSock = null;
private TcpClient leSocket = null;
private System.Text.UTF8Encoding encoding;
public LeTarget()
{
}
string GetKey()
{
return ConfigurationManager.AppSettings["LOGENTRIES_ACCOUNT_KEY"];
}
string GetLocation()
{
return ConfigurationManager.AppSettings["LOGENTRIES_LOCATION"];
}
[RequiredParameter]
public bool Debug { get; set; }
public bool KeepConnection { get; set; }
private void createSocket(String key, String location)
{
this.leSocket = new TcpClient("api.logentries.com", 443);
this.leSocket.NoDelay = true;
this.sslSock = new SslStream(this.leSocket.GetStream());
this.encoding = new System.Text.UTF8Encoding();
this.sslSock.AuthenticateAsClient("logentries.com");
String output = "PUT /" + key + "/hosts/" + location + "/?realtime=1 HTTP/1.1\r\n";
this.sslSock.Write(this.encoding.GetBytes(output), 0, output.Length);
output = "Host: api.logentries.com\r\n";
this.sslSock.Write(this.encoding.GetBytes(output), 0, output.Length);
output = "Accept-Encoding: identity\r\n";
this.sslSock.Write(this.encoding.GetBytes(output), 0, output.Length);
output = "Transfer_Encoding: chunked\r\n\r\n";
this.sslSock.Write(this.encoding.GetBytes(output), 0, output.Length);
}
private byte[] GetBytesToWrite(LogEventInfo logEvent)
{
string text = this.Layout.Render(logEvent) + "\r\n";
return this.encoding.GetBytes(text);
}
protected override void Write(LogEventInfo logEvent)
{
if (this.sslSock == null)
{
try
{
this.createSocket(this.GetKey(), this.GetLocation());
}
catch (Exception e)
{
WriteDebugMessages("Error connecting to Logentries", e);
}
}
byte[] message = this.GetBytesToWrite(logEvent);
try
{
this.sendToLogentries(message);
}
catch (Exception)
{
try
{
this.createSocket(this.GetKey(), this.GetLocation());
this.sendToLogentries(message);
}
catch (Exception ex)
{
WriteDebugMessages("Error sending log to Logentries", ex);
}
}
}
private void sendToLogentries(byte[] message)
{
this.sslSock.Write(message, 0, message.Length);
}
private void WriteDebugMessages(string message, Exception e)
{
if (!this.Debug) return;
string[] messages = { message, e.ToString() };
foreach (var msg in messages)
{
System.Diagnostics.Debug.WriteLine(msg);
Console.Error.WriteLine(msg);
}
}
}
}