-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Fix #9177 dump JVM info #11845
Fix #9177 dump JVM info #11845
Changes from 3 commits
a4f680a
499c18b
f64c059
c8dc5ad
6359cf8
1cbc97e
e95b14d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,21 @@ | |
package org.eclipse.jetty.util.component; | ||
|
||
import java.io.IOException; | ||
import java.io.UncheckedIOException; | ||
import java.lang.reflect.Array; | ||
import java.nio.file.Path; | ||
import java.time.Instant; | ||
import java.time.ZoneId; | ||
import java.time.ZoneOffset; | ||
import java.time.format.DateTimeFormatter; | ||
import java.util.Arrays; | ||
import java.util.Collection; | ||
import java.util.Iterator; | ||
import java.util.Map; | ||
import java.util.Objects; | ||
import java.util.stream.Stream; | ||
|
||
import org.eclipse.jetty.util.Jetty; | ||
import org.eclipse.jetty.util.StringUtil; | ||
import org.eclipse.jetty.util.TypeUtil; | ||
import org.eclipse.jetty.util.annotation.ManagedObject; | ||
|
@@ -31,7 +37,7 @@ | |
@ManagedObject("Dumpable Object") | ||
public interface Dumpable | ||
{ | ||
String KEY = "key: +- bean, += managed, +~ unmanaged, +? auto, +: iterable, +] array, +@ map, +> undefined"; | ||
String KEY = "key: +- bean, += managed, +~ unmanaged, +? auto, +: iterable, +] array, +@ map, +> undefined\n"; | ||
|
||
@ManagedOperation(value = "Dump the nested Object state as a String", impact = "INFO") | ||
default String dump() | ||
|
@@ -50,24 +56,56 @@ default String dump() | |
void dump(Appendable out, String indent) throws IOException; | ||
|
||
/** | ||
* Utility method to implement {@link #dump()} by calling {@link #dump(Appendable, String)} | ||
* Utility method to call dump to a {@link String} | ||
* | ||
* @param dumpable The dumpable to dump | ||
* @return The dumped string | ||
* @see #dump(Appendable, String) | ||
*/ | ||
static String dump(Dumpable dumpable) | ||
{ | ||
StringBuilder b = new StringBuilder(); | ||
dump(dumpable, b); | ||
return b.toString(); | ||
} | ||
|
||
DateTimeFormatter UTC_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").withZone(ZoneOffset.UTC); | ||
DateTimeFormatter LOCAL_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS Z").withZone(ZoneId.of(System.getProperty("user.timezone"))); | ||
|
||
/** | ||
* Utility method to dump to an {@link Appendable} | ||
* | ||
* @param dumpable The dumpable to dump | ||
* @param out The destination of the dump | ||
*/ | ||
static void dump(Dumpable dumpable, Appendable out) | ||
{ | ||
try | ||
{ | ||
dumpable.dump(b, ""); | ||
dumpable.dump(out, ""); | ||
|
||
out.append(KEY); | ||
Runtime runtime = Runtime.getRuntime(); | ||
Instant now = Instant.now(); | ||
out.append("JVM: %s %s; OS: %s %s %s; Jetty: %s; CPUs: %d; mem(free/total/max): %,d/%,d/%,d MB\nUTC: %s; %s: %s".formatted( | ||
System.getProperty("java.runtime.name"), | ||
System.getProperty("java.runtime.version"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The vendor is missing, and it's important (say IBM). For example, IBM's does not have any Use I would just print the UTC time, not the local one. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like having UTC and local time... it is OK for you who only lives an hour or 2 off UTC, but for those of us that struggle with bigger differences, it can be nice to have them both listed :) |
||
System.getProperty("os.name"), | ||
System.getProperty("os.arch"), | ||
System.getProperty("os.version"), | ||
Jetty.VERSION, | ||
runtime.availableProcessors(), | ||
runtime.freeMemory() / (1024 * 1024), | ||
runtime.totalMemory() / (1024 * 1024), | ||
runtime.maxMemory() / (1024 * 1024), | ||
UTC_FORMATTER.format(now), | ||
System.getProperty("user.timezone"), | ||
LOCAL_FORMATTER.format(now))); | ||
} | ||
catch (IOException e) | ||
{ | ||
b.append(e.toString()); | ||
throw new UncheckedIOException(e); | ||
} | ||
b.append(KEY); | ||
return b.toString(); | ||
} | ||
|
||
/** | ||
|
@@ -301,7 +339,7 @@ public void dump(Appendable out, String indent) throws IOException | |
* interface to allow it to refine which of its beans can be | ||
* dumped. | ||
*/ | ||
public interface DumpableContainer extends Dumpable | ||
interface DumpableContainer extends Dumpable | ||
{ | ||
default boolean isDumpable(Object o) | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others. | ||
// | ||
// This program and the accompanying materials are made available under the | ||
// terms of the Eclipse Public License v. 2.0 which is available at | ||
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 | ||
// which is available at https://www.apache.org/licenses/LICENSE-2.0. | ||
// | ||
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 | ||
// ======================================================================== | ||
// | ||
|
||
package org.eclipse.jetty.util.component; | ||
|
||
import java.io.IOException; | ||
import java.util.Comparator; | ||
import java.util.Map; | ||
|
||
public class DumpableMap implements Dumpable | ||
{ | ||
private final String _name; | ||
private final Map<?, ?> _map; | ||
|
||
public DumpableMap(String name, Map<?, ?> map) | ||
{ | ||
_name = name; | ||
_map = map; | ||
} | ||
|
||
@Override | ||
public void dump(Appendable out, String indent) throws IOException | ||
{ | ||
Object[] array = _map.entrySet().stream() | ||
.sorted(Map.Entry.comparingByKey(Comparator.comparing(String::valueOf))) | ||
.map(e -> Dumpable.named(String.valueOf(e.getKey()), e.getValue())).toArray(Object[]::new); | ||
Dumpable.dumpObjects(out, indent, _name + " size=" + array.length, array); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are now public constants that are just an implementation detail.
I would just allocate them on-the-fly for the formatting, if necessary.
Actually, I think there are predefined constants in
DateTimeFormatter
, but I would not even do that.Just calling
Instant.toString()
formats it in UTC following the standard.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about this output: