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 @@ -105,8 +105,8 @@ public static Set<String> getJavaPids() {
105105 // Some JDKs don't have jvmstat available as a module, attempt to read from the hsperfdata
106106 // directory instead
107107 try (Stream <Path > stream =
108- // Emulating the hotspot way to enumerate the JVM processes using the perfdata file
109- // https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
108+ // Emulating the hotspot way to enumerate the JVM processes using the perfdata file
109+ // https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
110110 Files .list (Paths .get (getOSTempDir (), "hsperfdata_" + System .getProperty ("user.name" )))) {
111111 return stream
112112 .filter (file -> !Files .isDirectory (file ))
You can’t perform that action at this time.
0 commit comments