File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
internal-api/src/main/java/datadog/trace/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,8 +99,8 @@ public static Set<String> getJavaPids() {
9999 // Some JDKs don't have jvmstat available as a module, attempt to read from the hsperfdata
100100 // directory instead
101101 try (Stream <Path > stream =
102- // Emulating the hotspot way to enumerate the JVM processes using the perfdata file
103- // https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
102+ // Emulating the hotspot way to enumerate the JVM processes using the perfdata file
103+ // https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
104104 Files .list (Paths .get (getOSTempDir (), "hsperfdata_" + System .getProperty ("user.name" )))) {
105105 return stream
106106 .filter (file -> !Files .isDirectory (file ))
You can’t perform that action at this time.
0 commit comments