Go to file
Carsten Grohmann 08fa63010c Analyse the complete line "invoked oom-killer"
Analyse and show the GFP mask, the nodemask (is available), the
number of requested pages (order) and the adjusted OOM score.
2018-08-08 20:41:26 +02:00
.gitignore Add autogenerated JavaScript code to .gitignore 2017-11-30 07:06:52 +01:00
LICENSE.txt Update copyright years 2018-04-06 21:56:29 +02:00
Makefile Update copyright years 2018-04-06 21:56:29 +02:00
OOMAnalyser.html Analyse the complete line "invoked oom-killer" 2018-08-08 20:41:26 +02:00
OOMAnalyser.py Analyse the complete line "invoked oom-killer" 2018-08-08 20:41:26 +02:00
README.md Update copyright years 2018-04-06 21:56:29 +02:00
requirements.txt Initial commit 2017-11-25 12:52:55 +01:00

Linux OOMAnalyser

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

Build and Installation

This section describes a manual build and installation of OOMAnalyser.

Requirements

Setup

Clone the repository:

# git clone https://github.com/CarstenGrohmann/OOMAnalyser

Setup the Python virtual environment:

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

or 

# make venv

Build

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

or 

# make build

Usage

  • Change into the source directory and start your own small web server.

  • Start Python built-in web server:

  • # python3 -m http.server 8080 --bind 127.0.0.1
    
    or 
    
    # make websrv
  • Open the URL http://localhost:8080/OOMAnalyser.html in your favorite browser.

  • Thats it!

Further Information

Known Bugs/Issues

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

License

This project is licensed under the MIT license.

Copyright (c) 2017-2018 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