glances/glances
nicolargo eb3cd8fd20 Support for Docker API < 2.0 is deprecated (docker plugins) 2017-10-03 22:18:13 +02:00
..
amps Failed to connect to bus: No such file or directory #1156 2017-09-30 09:48:15 +02:00
exports Add JSON export plugin 2017-08-01 19:19:14 +02:00
outputs fix sensors plugin not displayed in web UI 2017-09-06 23:38:50 +02:00
plugins Support for Docker API < 2.0 is deprecated (docker plugins) 2017-10-03 22:18:13 +02:00
README.txt glances/README.txt: update 2015-11-15 11:05:15 +01:00
__init__.py Creation of the maintenance branche for Glances 2.x 2017-09-06 15:41:54 +02:00
__main__.py Copyright 2017 2017-01-09 12:09:17 +01:00
actions.py Add new repeat function to the action (issue #952) 2017-04-10 18:38:23 +02: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.py Client and Quiet mode don't work together (issue #1139) 2017-09-09 10:19:32 +02:00
client_browser.py Revert "Enhance Glances browser color (issue #977)" 2017-05-08 22:37:27 +02:00
compat.py Python encoding in python2 and python3 2017-06-13 17:13:59 -04: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 Merge branch 'master' into develop 2017-08-27 13:58:18 +02:00
outdated.py glances-version.db Permission denied #1066 2017-03-27 09:08:01 +02:00
password.py Optimize config code 2017-01-31 18:04:53 +01:00
password_list.py Copyright 2017 2017-01-09 12:09:17 +01:00
ports_list.py Handle crash when no gateway is available (offline machines) 2017-03-06 16:23:56 +01:00
processes.py PermissionError on macOS #1120 2017-07-08 11:04:30 +02:00
processes_tree.py Copyright 2017 2017-01-09 12:09:17 +01:00
server.py Remove debug message 2017-05-10 13:59:02 +02: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.py Add getViews<plugin>() method for then XML API, first step for the issue977 2017-05-10 14:52:32 +02:00
stats_client.py Improve error message as asked in issue #1078 2017-04-10 15:26:11 +02:00
stats_client_snmp.py Copyright 2017 2017-01-09 12:09:17 +01:00
stats_server.py Copyright 2017 2017-01-09 12:09:17 +01:00
thresholds.py Create the Glances threshold dict 2017-04-17 19:24:00 +02:00
timer.py Copyright 2017 2017-01-09 12:09:17 +01:00
web_list.py New plugin to scan remote Web sites (URL) (issue #981) 2017-04-08 15:50:20 +02:00
webserver.py Copyright 2017 2017-01-09 12:09:17 +01:00

README.txt

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
    ...