Skip to content

Commit

Permalink
Revert "JFR on-by-default (#333)" (#345)
Browse files Browse the repository at this point in the history
This reverts commit 8c1e5d8.
  • Loading branch information
meiao authored Jul 15, 2021
1 parent e6ad4a9 commit 13ec31b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class JfrConfigImpl extends BaseConfig implements JfrConfig {

public static final String SYSTEM_PROPERTY_ROOT = "newrelic.config.jfr.";
public static final String ENABLED = "enabled";
public static final Boolean ENABLED_DEFAULT = Boolean.TRUE;
public static final Boolean ENABLED_DEFAULT = Boolean.FALSE;
public static final String AUDIT_LOGGING = "audit_logging";
public static final Boolean AUDIT_LOGGING_DEFAULT = Boolean.FALSE;
public static final Boolean USE_LICENSE_KEY_DEFAULT = Boolean.TRUE;
Expand Down
6 changes: 3 additions & 3 deletions newrelic-agent/src/main/resources/newrelic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ common: &default_settings
# Requires a JVM that provides the JFR library.
jfr:

# Set to false to disable Real-time profiling with JFR.
# Default is true.
enabled: true
# Set to true to enable Real-time profiling with JFR.
# Default is false.
enabled: false

# Set to true to enable audit logging which will display all JFR metrics and events in each harvest batch.
# Audit logging is extremely verbose and should only be used for troubleshooting purposes.
Expand Down

0 comments on commit 13ec31b

Please sign in to comment.