You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commandline support for parsing logfile series has been added.
Syntactically this is close to existing commandline arguments.
Some additional refactoring was done to have a unified handling of the various types of resources that can be used.
System.out.println("Welcome to GCViewer with cmdline");
93
+
privatestaticvoidusage() {
94
+
System.out.println("Welcome to GCViewer with cmdline");
95
95
System.out.println("java -jar gcviewer.jar [<gc-log-file|url>] -> opens gui and loads given file");
96
+
System.out.println("java -jar gcviewer.jar [<gc-log-file|url>];[<gc-log-file|url>];[...] -> opens gui and loads given files as series of rotated logfiles");
System.out.println("java -jar gcviewer.jar [<gc-log-file|url>];[<gc-log-file|url>];[...] [<export.csv>] -> cmdline: loads given files as series of rotated logfiles and writes report to <export.csv>");
99
+
System.out.println("java -jar gcviewer.jar [<gc-log-file>] [<export.csv>] [<chart.png>] -> cmdline: writes report to <export.csv> and renders gc chart to <chart.png>");
100
+
System.out.println("java -jar gcviewer.jar [<gc-log-file|url>];[<gc-log-file|url>];[...] [<export.csv>] [<chart.png>] -> cmdline: loads given files as series of rotated logfiles and writes report to <export.csv> and renders gc chart to <chart.png>");
0 commit comments