Skip to content

Commit 497966b

Browse files
committed
Change deafult JFR File name for openj9
Signed-off-by: Ravali Yatham <[email protected]>
1 parent 3c8fe4a commit 497966b

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

src/jdk.jfr/share/classes/jdk/jfr/internal/JVMSupport.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25+
26+
/*
27+
* ===========================================================================
28+
* (c) Copyright IBM Corp. 2024, 2024 All Rights Reserved
29+
* ===========================================================================
30+
*/
2531
package jdk.jfr.internal;
2632

2733
import java.io.IOException;
@@ -155,7 +161,7 @@ public static String makeFilename(Recording recording) {
155161
String pid = JVM.getPid();
156162
String date = ValueFormatter.formatDateTime(LocalDateTime.now());
157163
String idText = recording == null ? "" : "-id-" + Long.toString(recording.getId());
158-
return "hotspot-" + "pid-" + pid + idText + "-" + date + ".jfr";
164+
return "openj9-" + "pid-" + pid + idText + "-" + date + ".jfr";
159165
}
160166

161167
public static boolean createFailedNativeJFR() throws IllegalStateException {

src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdDump.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25+
26+
/*
27+
* ===========================================================================
28+
* (c) Copyright IBM Corp. 2024, 2024 All Rights Reserved
29+
* ===========================================================================
30+
*/
2531
package jdk.jfr.internal.dcmd;
2632

2733
import java.io.IOException;
@@ -289,7 +295,7 @@ public Argument[] getArgumentInfos() {
289295
"Maximum duration to dump, in (s)econds, (m)inutes, (h)ours, or (d)ays, e.g. 60m, or 0 for no limit",
290296
"NANOTIME", false, true, null, false),
291297
new Argument("maxsize", "Maximum amount of bytes to dump, in (M)B or (G)B, e.g. 500M, or 0 for no limit",
292-
"MEMORY SIZE", false, true, "hotspot-pid-xxxxx-id-y-YYYY_MM_dd_HH_mm_ss.jfr", false),
298+
"MEMORY SIZE", false, true, "openj9-pid-xxxxx-id-y-YYYY_MM_dd_HH_mm_ss.jfr", false),
293299
new Argument("begin",
294300
"Point in time to dump data from, e.g. 09:00, 21:35:00, 2018-06-03T18:12:56.827Z, 2018-06-03T20:13:46.832, -10m, -3h, or -1d",
295301
"STRING", false, true, null, false),

src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdStart.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25+
26+
/*
27+
* ===========================================================================
28+
* (c) Copyright IBM Corp. 2024, 2024 All Rights Reserved
29+
* ===========================================================================
30+
*/
2531
package jdk.jfr.internal.dcmd;
2632

2733
import java.io.IOException;
@@ -501,7 +507,7 @@ public Argument[] getArgumentInfos() {
501507
"BOOLEAN", false, true, "true", false),
502508
new Argument("filename",
503509
"Resulting recording filename, e.g. \\\"" + exampleFilename() + "\\\"",
504-
"FILE", false, true, "hotspot-pid-xxxxx-id-y-YYYY_MM_dd_HH_mm_ss.jfr", false),
510+
"FILE", false, true, "openj9-pid-xxxxx-id-y-YYYY_MM_dd_HH_mm_ss.jfr", false),
505511
new Argument("maxage",
506512
"Maximum time to keep recorded data (on disk) in (s)econds, (m)inutes, (h)ours, or (d)ays, e.g. 60m, or 0 for no limit",
507513
"NANOTIME", false, true, "0", false),

0 commit comments

Comments
 (0)