glances/glances
2016-03-11 21:32:56 +01:00
..
exports Fix another sorting issue in Python 3 2016-02-21 16:00:06 +01:00
outputs [Web UI] add missing show/hide IP module shortcut 2016-03-09 21:54:02 +01:00
plugins Close the hddtemp socket in the finally block 2016-03-11 18:20:20 +01:00
__init__.py Glances 2.6RC1 - Test it ll! 2016-03-11 21:32:56 +01:00
__main__.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
actions.py When Glances is starting the notifications should be delayed #732 2015-11-28 15:52:42 +01:00
autodiscover.py Rename OS vars for consistency 2015-11-29 20:00:00 +01:00
client_browser.py Fix IndexError in browser mode 2016-02-10 17:21:14 -08:00
client.py Change username for server and web server authentication (issue #693) 2016-03-04 10:57:15 +01:00
compat.py RuntimeError: dictionary changed size during iteration #764 - Step 2 2016-01-04 15:08:36 +01:00
config.py Rename OS vars for consistency 2015-11-29 20:00:00 +01:00
cpu_percent.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
folder_list.py Remove unused imports and fix a bare except statement 2015-12-11 11:55:15 +01:00
globals.py Rename OS vars for consistency 2015-11-29 20:00:00 +01:00
logger.py Add a connector to ElasticSearch (welcome to Kibana dashboard) #311 2016-02-04 14:23:18 +01:00
logs.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
main.py Use Python 2.6 compatible string.format calls (3) 2016-03-11 19:00:00 +01:00
monitor_list.py Fix side effect of commit fcc65bf 2016-03-07 13:09:58 +01:00
password_list.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
password.py Change username for server and web server authentication (issue #693) 2016-03-04 10:57:15 +01:00
processes.py Fix another side effect of commit fcc65bf (issue #809) 2016-03-11 10:30:00 +01:00
README.txt glances/README.txt: update 2015-11-15 11:05:15 +01:00
server.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
snmp.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
standalone.py Rename OS vars for consistency 2015-11-29 20:00:00 +01:00
static_list.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
stats.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
timer.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
webserver.py Fix hddtemp not displayed in web ui 2015-12-14 22:11:50 +01:00

You are in the main Glances source folder. This page is **ONLY** for developers.

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
config.py                   Manage the configuration file
compat.py                   Python2/3 compatibility shims module
globals.py                  Share variables upon modules
main.py                     Main script to rule them up...
client.py                   Glances client
server.py                   Glances server
webserver.py                Glances web server (Bottle-based)
autodiscover.py             Glances autodiscover module (via zeroconf)
standalone.py               Glances standalone (curses interface)
password.py                 Manage password for Glances client/server
stats.py                    The stats manager
timer.py                    The timer class
actions.py                  Manage trigger actions (via mustache)
snmp.py                     Glances SNMP client (via pysnmp)
...
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 RAM stats
    glances_memswap.py      Manage swap stats
    glances_network.py      Manage network stats
    glances_fs.py           Manage file system stats
    glances_diskio.py       Manage disk I/O stats
    glances_docker.py       Glances Docker plugin (via docker-py)
    glances_raid.py         Glances RAID plugin (via pymdstat)
    ...
outputs
    => Glances UI
    glances_curses.py       The curses interface
    glances_bottle.py       The web interface
    ...
exports
    => Glances export interfaces
    glances_csv.py          The CSV export module
    glances_influxdb.py     The InfluxDB export module
    glances_opentsdb.py     The OpenTSDB export module
    glances_rabbitmq.py     The RabbitMQ export module
    glances_statsd.py       The StatsD export module
    ...