glances/glances
2017-04-03 08:56:01 +02:00
..
amps Copyright 2017 2017-01-09 12:09:17 +01:00
exports Improve code quality 2017-04-01 22:56:41 +02:00
outputs Use -> and <- arrows keys to switch between processing sort (issue #1075) 2017-04-02 14:52:35 +02:00
plugins Remove double space in the SWAP plugin 2017-04-03 08:56:01 +02:00
__init__.py After version 2.9.1 2017-03-29 12:02:08 +02:00
__main__.py Copyright 2017 2017-01-09 12:09:17 +01:00
actions.py Copyright 2017 2017-01-09 12:09:17 +01:00
amps_list.py Copyright 2017 2017-01-09 12:09:17 +01:00
attribute.py Add trends in the Curses interface #1077 2017-04-02 23:02:13 +02:00
autodiscover.py Autodiscover error while binding on IPv6 addresses (issue #1002) 2017-01-22 10:24:52 +01:00
client_browser.py Crashs after long time running the glances --browser (recursion exceeded) #1059 2017-03-22 21:36:54 +01:00
client.py Refactor __init__ and main scripts #1050 - Need to find a way to kill server when CTRL-C 2017-03-15 21:06:52 +01:00
compat.py Add trends in the Curses interface #1077 2017-04-02 23:02:13 +02:00
config.py Version 2.8.7 2017-03-12 07:38:03 +01:00
cpu_percent.py Copyright 2017 2017-01-09 12:09:17 +01:00
filter.py Copyright 2017 2017-01-09 12:09:17 +01:00
folder_list.py folder_list: remove superfluous try/except when reading config values 2017-01-09 16:01:07 +01:00
globals.py Optimize config code 2017-01-31 18:04:53 +01:00
history.py Add trends in the Curses interface #1077 2017-04-02 23:02:13 +02:00
logger.py Copyright 2017 2017-01-09 12:09:17 +01:00
logs.py flake8 fixes 2017-01-09 12:59:36 +01:00
main.py Refactor main.py. No longer need to change it if a new plugin is added (except for the command line) 2017-03-27 17:54:02 +02:00
outdated.py glances-version.db Permission denied #1066 2017-03-27 09:08:01 +02:00
password_list.py Copyright 2017 2017-01-09 12:09:17 +01:00
password.py Optimize config code 2017-01-31 18:04:53 +01:00
ports_list.py Handle crash when no gateway is available (offline machines) 2017-03-06 16:23:56 +01:00
processes_tree.py Copyright 2017 2017-01-09 12:09:17 +01:00
processes.py Fix the exception handling of WindowsError (#1021) 2017-03-12 12:10:12 +01:00
README.txt glances/README.txt: update 2015-11-15 11:05:15 +01:00
server.py Refactor __init__ and main scripts #1050 - Need to find a way to kill server when CTRL-C 2017-03-15 21:06:52 +01:00
snmp.py Copyright 2017 2017-01-09 12:09:17 +01:00
standalone.py Copyright 2017 2017-01-09 12:09:17 +01:00
static_list.py Copyright 2017 2017-01-09 12:09:17 +01:00
stats_client_snmp.py Copyright 2017 2017-01-09 12:09:17 +01:00
stats_client.py Copyright 2017 2017-01-09 12:09:17 +01:00
stats_server.py Copyright 2017 2017-01-09 12:09:17 +01:00
stats.py Remove extra } in format string 2017-03-29 05:22:18 -04:00
timer.py Copyright 2017 2017-01-09 12:09:17 +01:00
webserver.py Copyright 2017 2017-01-09 12:09:17 +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
    ...