glances/glances
Alessio Sergi f64533e49c Per-CPU: Fix crash on non-Linux platforms
Use 'idle' instead of 'iowait' since the latter is available only on
Linux.
2014-06-01 17:22:22 +02:00
..
core Merge branch 'develop' of github.com:nicolargo/glances into develop 2014-05-30 17:51:00 +02:00
outputs Merge branch 'develop' of github.com:nicolargo/glances into develop 2014-05-30 17:51:00 +02:00
plugins Per-CPU: Fix crash on non-Linux platforms 2014-06-01 17:22:22 +02:00
README.txt First commit for the Alert module 2014-02-23 17:06:03 +01:00
__init__.py Miscellaneous fixes and improvements 2014-05-07 16:59:59 +02:00
__main__.py Use parentheses sparingly in conditional statements 2014-04-23 12:23:23 +02:00

README.txt

You are in the main Glances's source folder.
This page is for developpers and contributors.

If you are lookink for user manual, please follow this link: https://github.com/nicolargo/glances/blob/master/docs/glances-doc.rst

===

__init__.py                 Global module init
__main__.py                 Entry point for module
core/
    glances_config.py       Manage configuration file
    glances_globals.py      Share variables uppon modules
    glances_limits.py       Manage limits
    glances_logs.py         Manage logs
    glances_main.py         Main script to rule them up...
    glances_stats.py        Inteface to grab stats
    glances_client.py       Glances client
    glances_server.py       Glances server
    glances_standalone.py   Glances standalone (with curse interface)
    glances_stats.py        The stats manager
    glances_timer.py        Manage timer
plugins/
    glances_plugins.py      "Father class" for others plugins
    glances_cpu.py          Manage CPU stats
    glances_load.py         Manage LOAD stats
    glances_mem.py          Manage MEM (both RAM and SWAP) stats
    ...
outputs/
    glances_curse.py        The Curse interface
    glances_csv.py          The CSV interface
    glances_html.py         The HTML interface
    ...