-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathConstants.java
More file actions
33 lines (30 loc) · 813 Bytes
/
Constants.java
File metadata and controls
33 lines (30 loc) · 813 Bytes
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
package datadog.trace.bootstrap;
/**
* Some useful constants.
*
* <p>The idea here is to keep this class safe to inject into client's class loader.
*/
public final class Constants {
/**
* packages which will be loaded on the bootstrap classloader
*
* <p>Updates should be mirrored in
* datadog.trace.agent.test.SpockRunner#BOOTSTRAP_PACKAGE_PREFIXES_COPY
*/
public static final String[] BOOTSTRAP_PACKAGE_PREFIXES = {
"datadog.slf4j",
"datadog.context",
"datadog.environment",
"datadog.json",
"datadog.yaml",
"datadog.cli",
"datadog.appsec.api",
"datadog.trace.api",
"datadog.trace.bootstrap",
"datadog.trace.context",
"datadog.trace.instrumentation.api",
"datadog.trace.logging",
"datadog.trace.util",
};
private Constants() {}
}