forked from kbabiy/LogCast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LogCastTraceListenerWorker.cs
146 lines (125 loc) · 4.85 KB
/
LogCastTraceListenerWorker.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
using System;
using System.Collections.Specialized;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using LogCast.Delivery;
using LogCast.Engine;
using LogCast.Fallback;
using LogCast.Rendering;
namespace LogCast.Tracing
{
public class LogCastTraceListenerWorker
{
#region Options
public string SystemType { get; private set; }
public string Layout { get; private set; }
public string SkipPercentage { get; private set; }
public string FallbackLogDirectory { get; private set; }
public int DaysToKeepFallbackLogs { get; private set; }
public LogCastOptions Options { get; private set; }
#endregion
public IFallbackLogger FallbackLogger { get; }
private readonly LogMessageRouter _messageRouter;
private MessageLayout _layout;
[SuppressMessage("ReSharper", "IntroduceOptionalParameters.Global")]
public LogCastTraceListenerWorker(LogCastTraceListener listener, StringDictionary attributes)
: this(listener, attributes, null)
{
}
public LogCastTraceListenerWorker(LogCastTraceListener listener, StringDictionary attributes, IFallbackLogger fallbackLogger)
{
ParseListenerOptions(attributes);
ParseLogCastOptions(attributes);
FallbackLogger = fallbackLogger ??
new FileFallbackLogger(FallbackLogDirectory, DaysToKeepFallbackLogs);
_messageRouter = new LogMessageRouter(ParseSkipPercentage(SkipPercentage));
// This case is mostly for scenario when a client uses trace methods directly
// and doesn't use our ILogger/LogManager/LogConfig
if (!LogConfig.IsConfigured && !LogConfig.IsInProgress)
{
LogConfig.Configure(new TraceLogManager(listener, this));
}
}
internal void Write(TraceEventType eventType, string message, ExtendedTraceData traceData)
{
try
{
var logMessage = CreateMesage(TraceHelper.TranslateEventType(eventType), message, traceData);
_messageRouter.DispatchMessage(logMessage);
}
catch (Exception ex)
{
FallbackLogger.Write(ex, $"Failed to dispatch a message. Original message: {message}");
}
}
private LogMessage CreateMesage(LogLevel level, string message, ExtendedTraceData traceData)
{
var logMessage = new LogMessage
{
Level = level,
OriginalMessage = message
};
if (traceData != null)
{
logMessage.LoggerName = traceData.LoggerName;
logMessage.Exception = traceData.Error;
logMessage.Properties = traceData.Properties;
logMessage.CreatedAt = traceData.TimeStamp;
}
else
{
logMessage.CreatedAt = LogCastContext.PreciseNow;
}
if (_layout != null)
{
logMessage.RenderedMessage = _layout.Render(message, logMessage.LoggerName, logMessage.Level, logMessage.CreatedAt);
}
return logMessage;
}
public static string[] GetSupportedAttributes()
{
return new[]
{
"endpoint",
"throttling",
"retryTimeout",
"sendingThreadCount",
"sendTimeout",
"enableSelfDiagnostics",
"systemType",
"skipPercentage",
"fallbackLogDirectory",
"daysToKeepFallbackLogs",
"layout"
};
}
private void ParseListenerOptions(StringDictionary attributes)
{
SystemType = attributes["systemType"];
SkipPercentage = attributes["skipPercentage"];
FallbackLogDirectory = attributes["fallbackLogDirectory"];
if (int.TryParse(attributes["daysToKeepFallbackLogs"], out var days))
DaysToKeepFallbackLogs = days;
Layout = attributes["layout"];
if (!string.IsNullOrWhiteSpace(Layout))
{
_layout = new MessageLayout(Layout);
}
}
private void ParseLogCastOptions(StringDictionary attributes)
{
Options = LogCastOptions.Parse(
attributes["endpoint"],
attributes["throttling"],
attributes["retryTimeout"],
attributes["sendingThreadCount"],
attributes["sendTimeout"],
attributes["enableSelfDiagnostics"]);
}
private static int ParseSkipPercentage(string skipPercentage)
{
int.TryParse(skipPercentage, out var result);
return result;
}
}
}