Skip to content

Commit 0807d21

Browse files
authored
Fix inferred spans logging config option docs (#3948)
1 parent 03e60d1 commit 0807d21

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apm-agent-plugins/apm-profiling-plugin/src/main/java/co/elastic/apm/agent/profiler/ProfilingConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class ProfilingConfiguration extends ConfigurationOptionProvider {
6060
.key("profiling_inferred_spans_logging_enabled")
6161
.configurationCategory(PROFILING_CATEGORY)
6262
.description("By default, async profiler prints warning messages about missing JVM symbols to standard output. \n" +
63-
"Set this option to `true` to suppress such messages")
63+
"Set this option to `false` to suppress such messages")
6464
.dynamic(true)
6565
.tags("added[1.37.0]")
6666
.buildWithDefault(true);

docs/configuration.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2818,7 +2818,7 @@ NOTE: This feature is not available on Windows and on OpenJ9
28182818
==== `profiling_inferred_spans_logging_enabled` (added[1.37.0])
28192819

28202820
By default, async profiler prints warning messages about missing JVM symbols to standard output.
2821-
Set this option to `true` to suppress such messages
2821+
Set this option to `false` to suppress such messages
28222822

28232823
<<configuration-dynamic, image:./images/dynamic-config.svg[] >>
28242824

@@ -4857,7 +4857,7 @@ Example: `5ms`.
48574857
# profiling_inferred_spans_enabled=false
48584858
48594859
# By default, async profiler prints warning messages about missing JVM symbols to standard output.
4860-
# Set this option to `true` to suppress such messages
4860+
# Set this option to `false` to suppress such messages
48614861
#
48624862
# This setting can be changed at runtime
48634863
# Type: Boolean

0 commit comments

Comments
 (0)