glances/glances
Floran Brutel cf7744af1a Fix display of IOWait, IRQ, Steal when = 0 in web UI 2015-05-08 00:48:21 +02:00
..
core Disable --tree option on non-Linux platforms (update) 2015-05-03 11:13:59 +02:00
exports Limits are now exported 2015-05-03 17:11:49 +02:00
outputs Fix display of IOWait, IRQ, Steal when = 0 in web UI 2015-05-08 00:48:21 +02:00
plugins Remove some dev log message 2015-05-06 18:53:49 +02:00
README.txt Fix typos 2015-01-13 16:09:43 +01:00
__init__.py Commit Glances 2.4 RC1 2015-05-04 11:32:22 +02:00
__main__.py Add GlancesActions class. Actions are run every refresh time... It sucks... 2015-01-13 16:09:43 +01:00

README.txt

You are in the main Glances's source folder. This page is **ONLY** for developpers purposes.

If you are looking for the 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 Glances module
core/
    => Glances core folder
    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 data providers
    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 UI
    glances_curse.py        The Curse interface
    glances_html.py         The HTML interface
    ...
exports/
    => Glances export interfaces
    glances_csv.py          The CSV export module
    ...