Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ public final class ProfilingConfig {
public static final boolean PROFILING_ENABLED_DEFAULT = false;
public static final String PROFILING_ALLOCATION_ENABLED = "profiling.allocation.enabled";
public static final String PROFILING_HEAP_ENABLED = "profiling.heap.enabled";
public static final boolean PROFILING_HEAP_ENABLED_DEFAULT = false;

/**
* @deprecated The default is now computed dynamically based on JVM capabilities.
*/
@Deprecated public static final boolean PROFILING_HEAP_ENABLED_DEFAULT = false;

@Deprecated // Use dd.site instead
public static final String PROFILING_URL = "profiling.url";
@Deprecated // Use dd.api-key instead
Expand Down
2 changes: 1 addition & 1 deletion metadata/supported-configurations.json
Original file line number Diff line number Diff line change
Expand Up @@ -3045,7 +3045,7 @@
{
"version": "A",
"type": "boolean",
"default": "false",
"default": "true",
"aliases": []
}
],
Expand Down
Loading