Commit Graph

105 Commits

Author SHA1 Message Date
Carsten Grohmann
f304e205fb Add missing banner with copyright and license 2021-12-26 23:14:27 +01:00
Carsten Grohmann
9404c87519 Add support for newer process table format 2021-12-21 20:32:49 +01:00
Carsten Grohmann
a7e1e4cc64 Add support for journalctl output
The lines in the "Mem-Info:" block start with spaces instead of date /
time / hostname. As a result, removing the needless columns no longer
works correctly.

Suggested-by: Mikko Rantalainen <mikko.rantalainen@gmail.com>
2021-11-29 20:59:14 +01:00
Carsten Grohmann
b8895fe2d5 Convert http links to https links 2021-10-25 22:11:47 +02:00
Carsten Grohmann
aa28e0bb7c Hide "OOM Score" if not available 2021-10-25 22:06:17 +02:00
Carsten Grohmann
6d13cf0446 Add type attribute to button elements 2021-10-23 20:30:14 +02:00
Carsten Grohmann
5b9a4712e2 Add support for newer kernels
Suggested-by: Mikko Rantalainen <mikko.rantalainen@gmail.com>
2021-10-23 20:29:49 +02:00
Carsten Grohmann
f52b3e5f46 Fix HTML error 2021-10-16 10:00:27 +02:00
Carsten Grohmann
c1a5ed3420 Add support for systems w/o swap
Suggested-by: Mikko Rantalainen <mikko.rantalainen@gmail.com>
2021-10-09 22:06:16 +02:00
Carsten Grohmann
8ed7678a74 Add support for manually triggered OOM
Suggested-by: Mikko Rantalainen <mikko.rantalainen@gmail.com>
2021-10-04 20:46:43 +02:00
Carsten Grohmann
f088d861e2 Fix wrong domain in email address 2021-09-04 22:49:48 +02:00
Carsten Grohmann
dd2efedc55 Add a border around both memory diagrams 2021-08-04 18:19:39 +02:00
Carsten Grohmann
022a5977fc Use SVG <use/> to show small triangular icons 2021-07-29 02:39:59 +02:00
Carsten Grohmann
2c111144cc Report uncaught errors to the user 2021-07-24 11:50:22 +02:00
Carsten Grohmann
41a51a7e2a Rework removal of unused information
The columns left to the oom are not used. With this change, the
algorithm becomes more robust and can better handle known special
cases like "kernel:<processname>".
2021-07-24 00:28:38 +02:00
Carsten Grohmann
e283ff2019 Fix to allow process names with spaces 2021-07-18 14:29:40 +02:00
Carsten Grohmann
04002ab6e6 Extent unit tests 2021-07-17 22:36:04 +02:00
Carsten Grohmann
bddbb3b149 Remove unnecessary semicolons in JS code 2021-07-15 20:34:13 +02:00
Carsten Grohmann
b720297b89 Improve SVG chart colour palette 2021-07-11 22:02:29 +02:00
Carsten Grohmann
f8f1b0358e Rearrange OMM summary 2021-03-12 20:34:15 +01:00
Carsten Grohmann
98c99fa57f Update copyright years 2021-02-05 17:04:09 +01:00
Carsten Grohmann
d4a90ec1bb Start new development cycle 2020-12-10 13:57:33 +01:00
Carsten Grohmann
eb0cee8c57 Bump version number to 0.4.0 2020-12-10 13:51:51 +01:00
Carsten Grohmann
6af2e7cba9 Bump version number to 0.4.0 2020-12-10 13:51:39 +01:00
Carsten Grohmann
79368cca05 Update documentation 2020-12-10 13:36:29 +01:00
Carsten Grohmann
7ef53b3ba2 Add missing explanations
for free, free_cma, free_pcp and "total pagecache pages"
2020-11-22 13:09:31 +01:00
Carsten Grohmann
ad2bcfd551 Add drag-and-drop support for files 2020-11-20 15:20:52 +01:00
Carsten Grohmann
674ea295a8 Line "Killed process" can contain the process UID
Newer Red Hat 7 releases changes the output of the OOM a little bit. The
last output line "Killed process" contains the process UID now.

Old:
    Killed process 6576 (java) total-vm:33914892kB, \
    anon-rss:20629004kB, file-rss:0kB, shmem-rss:0kB

New:
    Killed process 6576 (java), UID 12345, total-vm:33914892kB, \
    anon-rss:20629004kB, file-rss:0kB, shmem-rss:0kB
2020-11-19 14:58:39 +01:00
Carsten Grohmann
dcfbdf43eb Use a CSS class to format tabled results 2020-11-19 11:54:20 +01:00
Carsten Grohmann
6cc0f427af Reduce size of first column in table with results
The size is set to a smaller fixed width. This improves the layout of
the remaining columns.
2020-11-19 11:36:27 +01:00
Carsten Grohmann
cc6384903a Increase width of the PID column in process table 2020-11-19 10:19:21 +01:00
Carsten Grohmann
6e11fd7aff Textual summary revised 2020-10-30 15:26:17 +01:00
Carsten Grohmann
0bc541ff11 Prefix CSS class mem-usage__svg with js-
This class is used within JS code.
2020-10-30 14:14:03 +01:00
Carsten Grohmann
95455f7ad2 Move project to Sourcehut
Github will remain only a mirror.
2020-10-29 15:04:52 +01:00
Carsten Grohmann
d456f6e25e Bundling multiple JS files into one single file
Transcrypt 3.7 generates multiple JS files in __target__ directory. All
output files will be bundled into one single file with the rollup
module bundler (rollup.js). Unfortunately the information of the
original sourcemap file will be lost.
2020-10-29 14:32:42 +01:00
Carsten Grohmann
c6958c1ccf Update to Transcrypt 3.7 2020-10-29 14:14:37 +01:00
Carsten Grohmann
468991a31b Use textarea placeholder instead of own code
<textarea placeholder="..."> is more simple that writing own code.
Thereby the own code / logic has been removed.
2020-07-15 21:10:37 +02:00
Carsten Grohmann
230cddae19 Fix: Trigger process isn't part of process table 2020-07-15 20:43:44 +02:00
Carsten Grohmann
aa94d8449e Validate and adapt HTML 2020-04-08 17:37:41 +02:00
Carsten Grohmann
d670dbef45 Use class instead of type selector
for memory usage diagrams. This allows a better separation between
different SVG usages.
2020-04-07 17:26:29 +02:00
Carsten Grohmann
23f064f2b7 Add sorting process table 2020-04-05 14:28:37 +02:00
Carsten Grohmann
54e4f566a4 Replace plain text process table by an HTML table
and mark the trigger process and the killed process.
2020-03-26 13:46:20 +01:00
Carsten Grohmann
c62d3952da Remove duplicate class attribute 2020-03-25 19:42:46 +01:00
Carsten Grohmann
81c8333017 Remove zebra-layout 2020-02-04 18:36:09 +01:00
Carsten Grohmann
ff725e9235 Fix issue that prevents units from being copied
Units have been placed with the ::after selector. Content showing with
this pseudo-element can't be selected and copied.

Now the units are automatically added when the value is set.
2020-02-03 21:15:47 +01:00
Carsten Grohmann
527eaa4cf6 Use classes selectors to simplify handling 2020-02-03 06:18:40 +01:00
Carsten Grohmann
be2fc6954e Don't show total rss twice 2020-02-03 06:15:12 +01:00
Carsten Grohmann
2bbc235852 Minor restructuring of summary section 2020-02-01 13:09:02 +01:00
Carsten Grohmann
9470c552e6 Add percentage of memory usage to analysis summary 2020-01-31 22:10:11 +01:00
Carsten Grohmann
3f0fc63144 Typo 2020-01-31 21:46:55 +01:00