Skip to content

8359248: JFR: Help text for-XX:StartFlightRecording:report-on-exit should explain option can be repeated #25797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 4 additions & 3 deletions src/java.base/share/man/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -1449,9 +1449,10 @@ These `java` options control the runtime behavior of the Java HotSpot VM.

`report-on-exit=`*identifier*
: Specifies the name of the view to display when the Java Virtual Machine
(JVM) shuts down. This option is not available if the disk option is set
to false. For a list of available views, see `jfr help view`. By default,
no report is generated.
(JVM) shuts down. To specify more than one view, use the report-on-exit
parameter repeatedly. This option is not available if the disk option
is set to false. For a list of available views, see `jfr help view`.
By default, no report is generated.

`settings=`*path*
: Specifies the path and name of the event settings file (of type JFC).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,9 +502,11 @@ private static String reportOnExit() {
"""

report-on-exit Specifies the name of the view to display when the Java Virtual
Machine (JVM) shuts down. This option is not available if the
disk option is set to false. For a list of available views,
see 'jfr help view'. By default, no report is generated.
Machine (JVM) shuts down. To specify more than one view, use
the `report-on-exit` parameter repeatedly, for each view. This
option is not available if the disk option is set to false.
For a list of available views, see `jfr help view`. By default,
no report is generated.
""";
}

Expand Down