Go to file
Carsten Grohmann 82249e7440 Pep8
2017-12-13 07:31:39 +01:00
.gitignore Add autogenerated JavaScript code to .gitignore 2017-11-30 07:06:52 +01:00
LICENSE.txt Initial commit 2017-11-25 12:52:55 +01:00
Makefile Add a rule to start a web server for serving the current directory 2017-11-29 20:10:25 +01:00
OOMAnalyser.html Improve check for entered OOM 2017-12-12 19:36:14 +01:00
OOMAnalyser.py Pep8 2017-12-13 07:31:39 +01:00
README.md Add reference to the public OOM web page 2017-11-25 13:14:54 +01:00
requirements.txt Initial commit 2017-11-25 12:52:55 +01:00

Linux OOM Analyser

Ive started this project to give the Python to JavaScript compiler Transcrypt a try.

This web page splits the content of a Linux Out Of Memory message into smaller pieces, aggregates these and presents them in a more human friendly format.

You can use the current version on www.carstengrohmann.de/oom/.

Design Goals

  • A local copy of the web page should run offline - without an Internet connection, without loading 3rd party libraries nor transferring data to foreign servers
  • A better understanding of the Linux Memory Management
  • Start learning JavaScript, CSS and HTML

Requirements

Installation

Install Python virtual environment

Use the provided Makefile:

# make venv

or setup the virtual environment manually:

# virtualenv env
# . env/bin/activate
# env/bin/pip install -Ur requirements.txt

Build

Use the provided Makefile:

# make venv

or build it manually:

# . env/bin/activate
# transcrypt --build --map --nomin -e 6 OOMAnalyser.py

Further Information

Known Bugs/Issues

Check the bug tracker on GitHub for current open bugs. New bugs can be reported there also.

License

Copyright (c) 2017 Carsten Grohmann mail <add at here> carsten-grohmann.de

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Enjoy! Carsten Grohmann