-
-
Notifications
You must be signed in to change notification settings - Fork 468
Expand file tree
/
Copy pathSentryAppender.java
More file actions
374 lines (340 loc) · 13.6 KB
/
SentryAppender.java
File metadata and controls
374 lines (340 loc) · 13.6 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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
package io.sentry.log4j2;
import static io.sentry.TypeCheckHint.LOG4J_LOG_EVENT;
import static io.sentry.TypeCheckHint.SENTRY_SYNTHETIC_EXCEPTION;
import com.jakewharton.nopen.annotation.Open;
import io.sentry.Breadcrumb;
import io.sentry.DateUtils;
import io.sentry.Hint;
import io.sentry.IScopes;
import io.sentry.ITransportFactory;
import io.sentry.InitPriority;
import io.sentry.ScopesAdapter;
import io.sentry.Sentry;
import io.sentry.SentryAttribute;
import io.sentry.SentryAttributes;
import io.sentry.SentryEvent;
import io.sentry.SentryIntegrationPackageStorage;
import io.sentry.SentryLevel;
import io.sentry.SentryLogLevel;
import io.sentry.SentryOptions;
import io.sentry.exception.ExceptionMechanismException;
import io.sentry.logger.SentryLogParameters;
import io.sentry.protocol.Mechanism;
import io.sentry.protocol.Message;
import io.sentry.protocol.SdkVersion;
import io.sentry.util.CollectionUtils;
import io.sentry.util.LoggerPropertiesUtil;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.core.Filter;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.appender.AbstractAppender;
import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
import org.apache.logging.log4j.core.config.plugins.PluginElement;
import org.apache.logging.log4j.core.config.plugins.PluginFactory;
import org.apache.logging.log4j.core.impl.ThrowableProxy;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/** Appender for Log4j2 in charge of sending the logged events to a Sentry server. */
@Plugin(name = "Sentry", category = "Core", elementType = "appender", printObject = true)
@Open
public class SentryAppender extends AbstractAppender {
public static final String MECHANISM_TYPE = "Log4j2SentryAppender";
private final @Nullable String dsn;
private final @Nullable ITransportFactory transportFactory;
private @NotNull Level minimumBreadcrumbLevel = Level.INFO;
private @NotNull Level minimumEventLevel = Level.ERROR;
private @NotNull Level minimumLevel = Level.INFO;
private final @Nullable Boolean debug;
private final @NotNull IScopes scopes;
private final @Nullable List<String> contextTags;
static {
SentryIntegrationPackageStorage.getInstance()
.addPackage("maven:io.sentry:sentry-log4j2", BuildConfig.VERSION_NAME);
}
/**
* @deprecated This constructor is deprecated. Please use {@link #SentryAppender(String, Filter,
* String, Level, Level, Level, Boolean, ITransportFactory, IScopes, String[])} instead.
*/
@Deprecated
@SuppressWarnings("InlineMeSuggester")
public SentryAppender(
final @NotNull String name,
final @Nullable Filter filter,
final @Nullable String dsn,
final @Nullable Level minimumBreadcrumbLevel,
final @Nullable Level minimumEventLevel,
final @Nullable Boolean debug,
final @Nullable ITransportFactory transportFactory,
final @NotNull IScopes scopes,
final @Nullable String[] contextTags) {
this(
name,
filter,
dsn,
minimumBreadcrumbLevel,
minimumEventLevel,
null,
debug,
transportFactory,
scopes,
contextTags);
}
public SentryAppender(
final @NotNull String name,
final @Nullable Filter filter,
final @Nullable String dsn,
final @Nullable Level minimumBreadcrumbLevel,
final @Nullable Level minimumEventLevel,
final @Nullable Level minimumLevel,
final @Nullable Boolean debug,
final @Nullable ITransportFactory transportFactory,
final @NotNull IScopes scopes,
final @Nullable String[] contextTags) {
super(name, filter, null, true, null);
this.dsn = dsn;
if (minimumBreadcrumbLevel != null) {
this.minimumBreadcrumbLevel = minimumBreadcrumbLevel;
}
if (minimumEventLevel != null) {
this.minimumEventLevel = minimumEventLevel;
}
if (minimumLevel != null) {
this.minimumLevel = minimumLevel;
}
this.debug = debug;
this.transportFactory = transportFactory;
this.scopes = scopes;
this.contextTags = contextTags != null ? Arrays.asList(contextTags) : null;
}
/**
* Create a Sentry Appender.
*
* @param name The name of the Appender.
* @param minimumBreadcrumbLevel The min. level of the breadcrumb.
* @param minimumEventLevel The min. level of the event.
* @param minimumLevel The min. level of the log event.
* @param dsn the Sentry DSN.
* @param debug if Sentry debug mode should be on
* @param filter The filter, if any, to use.
* @return The SentryAppender.
*/
@PluginFactory
public static @Nullable SentryAppender createAppender(
@Nullable @PluginAttribute("name") final String name,
@Nullable @PluginAttribute("minimumBreadcrumbLevel") final Level minimumBreadcrumbLevel,
@Nullable @PluginAttribute("minimumEventLevel") final Level minimumEventLevel,
@Nullable @PluginAttribute("minimumLevel") final Level minimumLevel,
@Nullable @PluginAttribute("dsn") final String dsn,
@Nullable @PluginAttribute("debug") final Boolean debug,
@Nullable @PluginElement("filter") final Filter filter,
@Nullable @PluginAttribute("contextTags") final String contextTags) {
if (name == null) {
LOGGER.error("No name provided for SentryAppender");
return null;
}
return new SentryAppender(
name,
filter,
dsn,
minimumBreadcrumbLevel,
minimumEventLevel,
minimumLevel,
debug,
null,
ScopesAdapter.getInstance(),
contextTags != null ? contextTags.split(",") : null);
}
@Override
public void start() {
try {
Sentry.init(
options -> {
options.setEnableExternalConfiguration(true);
options.setInitPriority(InitPriority.LOWEST);
options.setDsn(dsn);
if (debug != null) {
options.setDebug(debug);
}
options.setSentryClientName(
BuildConfig.SENTRY_LOG4J2_SDK_NAME + "/" + BuildConfig.VERSION_NAME);
options.setSdkVersion(createSdkVersion(options));
if (contextTags != null) {
for (final String contextTag : contextTags) {
options.addContextTag(contextTag);
}
}
Optional.ofNullable(transportFactory).ifPresent(options::setTransportFactory);
});
} catch (IllegalArgumentException e) {
LOGGER.warn("Failed to init Sentry during appender initialization: " + e.getMessage());
}
addPackageAndIntegrationInfo();
super.start();
}
@Override
public void append(final @NotNull LogEvent eventObject) {
if (scopes.getOptions().getLogs().isEnabled()
&& eventObject.getLevel().isMoreSpecificThan(minimumLevel)) {
captureLog(eventObject);
}
if (eventObject.getLevel().isMoreSpecificThan(minimumEventLevel)) {
final Hint hint = new Hint();
hint.set(SENTRY_SYNTHETIC_EXCEPTION, eventObject);
scopes.captureEvent(createEvent(eventObject), hint);
}
if (eventObject.getLevel().isMoreSpecificThan(minimumBreadcrumbLevel)) {
final Hint hint = new Hint();
hint.set(LOG4J_LOG_EVENT, eventObject);
scopes.addBreadcrumb(createBreadcrumb(eventObject), hint);
}
}
/**
* Captures a Sentry log from Log4j2's {@link LogEvent}.
*
* @param loggingEvent the log4j2 event
*/
// for the Android compatibility we must use old Java Date class
@SuppressWarnings("JdkObsolete")
protected void captureLog(@NotNull LogEvent loggingEvent) {
final @NotNull SentryLogLevel sentryLevel = toSentryLogLevel(loggingEvent.getLevel());
final @Nullable Object[] arguments = loggingEvent.getMessage().getParameters();
final @NotNull SentryAttributes attributes = SentryAttributes.of();
final @Nullable String nonFormattedMessage = loggingEvent.getMessage().getFormat();
final @NotNull String formattedMessage = loggingEvent.getMessage().getFormattedMessage();
if (nonFormattedMessage != null && !formattedMessage.equals(nonFormattedMessage)) {
attributes.add(
SentryAttribute.stringAttribute("sentry.message.template", nonFormattedMessage));
}
final @NotNull Map<String, String> contextData = loggingEvent.getContextData().toMap();
final @NotNull List<String> contextTags =
ScopesAdapter.getInstance().getOptions().getContextTags();
LoggerPropertiesUtil.applyPropertiesToAttributes(attributes, contextTags, contextData);
final @NotNull SentryLogParameters params = SentryLogParameters.create(attributes);
params.setOrigin("auto.log.log4j2");
Sentry.logger().log(sentryLevel, params, formattedMessage, arguments);
}
/**
* Creates {@link SentryEvent} from Log4j2 {@link LogEvent}.
*
* @param loggingEvent the log4j2 event
* @return the sentry event
*/
// for the Android compatibility we must use old Java Date class
@SuppressWarnings("JdkObsolete")
protected @NotNull SentryEvent createEvent(final @NotNull LogEvent loggingEvent) {
final SentryEvent event = new SentryEvent(DateUtils.getDateTime(loggingEvent.getTimeMillis()));
final Message message = new Message();
message.setMessage(loggingEvent.getMessage().getFormat());
message.setFormatted(loggingEvent.getMessage().getFormattedMessage());
message.setParams(toParams(loggingEvent.getMessage().getParameters()));
event.setMessage(message);
event.setLogger(loggingEvent.getLoggerName());
event.setLevel(formatLevel(loggingEvent.getLevel()));
final ThrowableProxy throwableInformation = loggingEvent.getThrownProxy();
if (throwableInformation != null) {
final Mechanism mechanism = new Mechanism();
mechanism.setType(MECHANISM_TYPE);
final Throwable mechanismException =
new ExceptionMechanismException(
mechanism, throwableInformation.getThrowable(), Thread.currentThread());
event.setThrowable(mechanismException);
}
if (loggingEvent.getThreadName() != null) {
event.setExtra("thread_name", loggingEvent.getThreadName());
}
if (loggingEvent.getMarker() != null) {
event.setExtra("marker", loggingEvent.getMarker().toString());
}
final Map<String, String> contextData =
CollectionUtils.filterMapEntries(
loggingEvent.getContextData().toMap(), entry -> entry.getValue() != null);
if (!contextData.isEmpty()) {
// get tags from ScopesAdapter options to allow getting the correct tags if Sentry has been
// initialized somewhere else
final List<String> contextTags = scopes.getOptions().getContextTags();
LoggerPropertiesUtil.applyPropertiesToEvent(event, contextTags, contextData, "Context Data");
}
return event;
}
private @NotNull List<String> toParams(final @Nullable Object[] arguments) {
if (arguments != null) {
return Arrays.stream(arguments)
.filter(Objects::nonNull)
.map(Object::toString)
.collect(Collectors.toList());
} else {
return Collections.emptyList();
}
}
/**
* Creates {@link Breadcrumb} from log4j2 {@link LogEvent}.
*
* @param loggingEvent the log4j2 event
* @return the sentry breadcrumb
*/
protected @NotNull Breadcrumb createBreadcrumb(final @NotNull LogEvent loggingEvent) {
final Breadcrumb breadcrumb = new Breadcrumb();
breadcrumb.setLevel(formatLevel(loggingEvent.getLevel()));
breadcrumb.setCategory(loggingEvent.getLoggerName());
breadcrumb.setMessage(loggingEvent.getMessage().getFormattedMessage());
return breadcrumb;
}
/**
* Transforms a {@link Level} into an {@link SentryLevel}.
*
* @param level original level as defined in log4j.
* @return log level used within sentry.
*/
private static @NotNull SentryLevel formatLevel(final @NotNull Level level) {
if (level.isMoreSpecificThan(Level.FATAL)) {
return SentryLevel.FATAL;
} else if (level.isMoreSpecificThan(Level.ERROR)) {
return SentryLevel.ERROR;
} else if (level.isMoreSpecificThan(Level.WARN)) {
return SentryLevel.WARNING;
} else if (level.isMoreSpecificThan(Level.INFO)) {
return SentryLevel.INFO;
} else {
return SentryLevel.DEBUG;
}
}
/**
* Transforms a {@link Level} into an {@link SentryLogLevel}.
*
* @param level original level as defined in log4j.
* @return log level used within sentry.
*/
private static @NotNull SentryLogLevel toSentryLogLevel(final @NotNull Level level) {
if (level.isMoreSpecificThan(Level.FATAL)) {
return SentryLogLevel.FATAL;
} else if (level.isMoreSpecificThan(Level.ERROR)) {
return SentryLogLevel.ERROR;
} else if (level.isMoreSpecificThan(Level.WARN)) {
return SentryLogLevel.WARN;
} else if (level.isMoreSpecificThan(Level.INFO)) {
return SentryLogLevel.INFO;
} else if (level.isMoreSpecificThan(Level.DEBUG)) {
return SentryLogLevel.DEBUG;
} else {
return SentryLogLevel.TRACE;
}
}
private @NotNull SdkVersion createSdkVersion(final @NotNull SentryOptions sentryOptions) {
SdkVersion sdkVersion = sentryOptions.getSdkVersion();
final String name = BuildConfig.SENTRY_LOG4J2_SDK_NAME;
final String version = BuildConfig.VERSION_NAME;
sdkVersion = SdkVersion.updateSdkVersion(sdkVersion, name, version);
return sdkVersion;
}
private void addPackageAndIntegrationInfo() {
SentryIntegrationPackageStorage.getInstance().addIntegration("Log4j");
}
}