-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEventHubLogger.cs
More file actions
175 lines (158 loc) · 6.91 KB
/
Copy pathEventHubLogger.cs
File metadata and controls
175 lines (158 loc) · 6.91 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// British Crown Copyright © 2018,
// All rights reserved.
//
// You may not copy the Software, rent, lease, sub-license, loan, translate, merge, adapt, vary
// re-compile or modify the Software without written permission from UKHO.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL CROWN OR THE SECRETARY OF STATE FOR DEFENCE BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
// OF SUCH DAMAGE.
using System;
using System.Collections.Generic;
using Microsoft.Extensions.Logging;
namespace UKHO.Logging.EventHubLogProvider
{
internal class EventHubLogger : ILogger
{
private const string OriginalFormatPropertyName = "{OriginalFormat}";
private readonly Action<IDictionary<string, object>> additionalValuesProvider;
private readonly string categoryName;
private readonly string environment;
private readonly IEventHubLog eventHubLog;
private readonly LogLevel minimumLogLevel;
private readonly string nodeName;
private readonly List<object> scopes;
private readonly string service;
private readonly string system;
internal EventHubLogger(IEventHubLog eventHubLog,
string categoryName,
EventHubLogProviderOptions options)
{
this.eventHubLog = eventHubLog;
this.categoryName = categoryName;
minimumLogLevel = options.GetMinimumLogLevelForCategory(categoryName);
environment = options.Environment;
system = options.System;
service = options.Service;
nodeName = options.NodeName;
scopes = new List<object>();
additionalValuesProvider = options.AdditionalValuesProvider;
}
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
{
(Dictionary<string, object> logProperties, string MessageTemplate) BuildLogProperties()
{
var result = new Dictionary<string, object>
{
{ "_Environment", environment },
{ "_System", system },
{ "_Service", service },
{ "_NodeName", nodeName },
{ "_ComponentName", categoryName },
};
try
{
additionalValuesProvider(result);
}
catch (Exception e)
{
result["LoggingError"] = $"additionalValuesProvider throw exception: {e.Message}";
result["LoggingErrorException"] = e;
}
// Allow scopes to override additional values
foreach (var scope in scopes)
{
switch (scope)
{
case KeyValuePair<string, object> kv:
result[kv.Key] = kv.Value;
break;
case IEnumerable<KeyValuePair<string, object>> list:
{
foreach (var kv in list)
{
result[kv.Key] = kv.Value;
}
break;
}
}
}
var messageTemplate = "";
if (state is IEnumerable<KeyValuePair<string, object>> structure)
{
foreach (var property in structure)
{
if (property.Key == OriginalFormatPropertyName && property.Value is string)
{
messageTemplate = (string)property.Value;
}
else
{
var propertyName = property.Key.StartsWith("@") ? property.Key.Substring(1) : property.Key;
if (result.ContainsKey(propertyName))
{
var existingValue = result[propertyName] as List<object> ?? new List<object>() { result[propertyName] };
existingValue.Add(property.Value);
result[propertyName] = existingValue;
}
else
result.Add(propertyName, property.Value);
}
}
if (string.IsNullOrEmpty(messageTemplate))
{
messageTemplate = formatter(state, exception);
}
}
else
{
messageTemplate = formatter(state, exception);
}
return (result, messageTemplate);
}
if (!IsEnabled(logLevel))
return;
var logProperties = BuildLogProperties();
var logEntry = new LogEntry
{
Exception = exception,
EventId = eventId,
Level = logLevel.ToString(),
MessageTemplate = logProperties.MessageTemplate,
Timestamp = DateTime.UtcNow,
LogProperties = logProperties.logProperties
};
eventHubLog.Log(logEntry);
}
public bool IsEnabled(LogLevel logLevel)
{
return logLevel >= minimumLogLevel;
}
public IDisposable BeginScope<TState>(TState state)
{
scopes.Add(state);
return new Scope<TState>(scopes, state);
}
private class Scope<TState> : IDisposable
{
private readonly List<object> scopes;
private readonly TState state;
public Scope(List<object> scopes, TState state)
{
this.scopes = scopes;
this.state = state;
}
public void Dispose()
{
scopes.Remove(state);
}
}
}
}