File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
dd-java-agent/agent-profiling/profiling-uploader/src/main/java/com/datadog/profiling/uploader
dd-trace-api/src/main/java/datadog/trace/api/config Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ static CompressionType of(String type) {
3535 case "zstd" :
3636 return ZSTD ;
3737 default :
38- log .warn ("Unrecognizable compression type: {}. Defaulting to 'zstd '." , type );
38+ log .warn ("Unrecognizable compression type: {}. Defaulting to 'lz4 '." , type );
3939 return ON ;
4040 }
4141 }
Original file line number Diff line number Diff line change @@ -205,10 +205,10 @@ public final class ProfilingConfig {
205205 public static final String PROFILING_DEBUG_DUMP_PATH = "profiling.debug.dump_path" ;
206206 public static final String PROFILING_DEBUG_JFR_DISABLED = "profiling.debug.jfr.disabled" ;
207207 /**
208- * Configuration for profile upload compression. Supported values are: - "on": equivalent to
209- * "zstd" - "off": disables compression - "lz4": uses LZ4 compression (fast with moderate
210- * compression ratio) - "gzip": uses GZIP compression (higher compression ratio but slower) -
211- * "zstd": uses ZSTD compression (high compression ratio with reasonable performance)
208+ * Configuration for profile upload compression. Supported values are: - "on": equivalent to "lz4"
209+ * - "off": disables compression - "lz4": uses LZ4 compression (fast with moderate compression
210+ * ratio) - "gzip": uses GZIP compression (higher compression ratio but slower) - "zstd": uses
211+ * ZSTD compression (high compression ratio with reasonable performance)
212212 */
213213 public static final String PROFILING_DEBUG_UPLOAD_COMPRESSION =
214214 "profiling.debug.upload.compression" ;
You can’t perform that action at this time.
0 commit comments