glances/glances
2016-09-26 08:42:19 +02:00
..
amps AMP plugin crashs on start with Python 3 (issue #917) 2016-09-11 10:59:14 +02:00
exports Add a CouchDB exporter #928 2016-09-24 17:02:33 +02:00
outputs Configure server cache time from the command line (--cached-time) #901 / Also implement cache time for the Web server mode 2016-09-25 22:12:58 +02:00
plugins Bugs corrected: 2016-09-21 11:40:37 +02:00
__init__.py Remove print in __init__.py 2016-09-26 08:42:19 +02:00
__main__.py Remove trick to allow glances/__main__.py to be called directly (needed for Python 2.6) 2016-06-02 21:16:52 +02:00
actions.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
amps_list.py AMP plugin crashs on start with Python 3 (issue #917) 2016-09-11 10:59:14 +02:00
attribute.py Limit number of item is configurable through the restfull API 2016-05-30 15:56:22 +02:00
autodiscover.py Correct two issues with latest Zeroconf version (issue #888 and #889) 2016-07-15 17:39:43 +02:00
client_browser.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
client.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
compat.py Ports plugin crashs on start with Python 3 (issue#918) 2016-09-11 11:04:20 +02:00
config.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
cpu_percent.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
filter.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
folder_list.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
globals.py First run for the Nginx AMP process 2016-04-14 19:40:36 +02:00
history.py Limit number of item is configurable through the restfull API 2016-05-30 15:56:22 +02:00
logger.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
logs.py Top 3 processes are back in the alert summary 2016-05-16 11:26:48 +02:00
main.py Configure server cache time from the command line (--cached-time) #901 / Also implement cache time for the Web server mode 2016-09-25 22:12:58 +02:00
outdated.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
password_list.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
password.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
ports_list.py Change Port plugin log message from warning to debug 2016-07-06 17:12:06 +02:00
processes_tree.py Split processes and processes_tree 2016-03-20 14:31:37 +01:00
processes.py Glances API returns the processes PPID (issue #926) 2016-09-24 18:17:48 +02:00
README.txt glances/README.txt: update 2015-11-15 11:05:15 +01:00
server.py Correct two issues with latest Zeroconf version (issue #888 and #889) 2016-07-15 17:39:43 +02:00
snmp.py Move core at the top of the module tree 2015-11-14 15:15:15 +01:00
standalone.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
static_list.py First release for the TCP ports scanner plugin. TODO: test and doc 2016-06-13 18:06:14 +02:00
stats_client_snmp.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
stats_client.py No more Python 2.6 compatible string.format calls 2016-06-02 20:04:13 +02:00
stats_server.py AMP is now compatible with Glances client/server mode 2016-04-24 17:51:55 +02:00
stats.py First release for the TCP ports scanner plugin. TODO: test and doc 2016-06-13 18:06:14 +02:00
timer.py Correct issue with the thread. RTT values are now OK 2016-06-21 15:07:31 +02: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
    ...