glances/glances
2017-12-30 22:28:21 +01:00
..
amps Failed to connect to bus: No such file or directory #1156 2017-09-30 09:48:15 +02:00
exports Remove graph export from Glances #1206 2017-12-29 19:10:25 +01:00
outputs Glances do not exit when eating 'q' #1207 2017-12-29 22:24:33 +01:00
plugins FreeBSD blackhole bug #1202 2017-12-30 10:37:21 +01:00
__init__.py Glances do not exit when eating 'q' #1207 2017-12-29 22:24:33 +01:00
__main__.py Copyright 2017 2017-01-09 12:09:17 +01:00
actions.py Add dynamic fields in all sections of the configuration file #1204 2017-12-26 17:04:57 +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 Revert "Enhance Glances browser color (issue #977)" 2017-05-08 22:37:27 +02:00
client.py Client and Quiet mode don't work together (issue #1139) 2017-09-09 10:19:32 +02:00
compat.py Add dynamic fields in all sections of the configuration file #1204 2017-12-26 17:04:57 +01:00
config.py Make plugin disable CLI option dynamical #1173 2017-12-27 20:21:24 +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 Disable warning message but in debug mode 2017-12-30 22:28:21 +01: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 PermissionError on macOS #1120 2017-07-08 11:04:30 +02:00
README.txt glances/README.txt: update 2015-11-15 11:05:15 +01:00
server.py Add support for the --modules-list 2017-12-28 11:32:12 +01:00
snmp.py Copyright 2017 2017-01-09 12:09:17 +01:00
standalone.py Glances do not exit when eating 'q' #1207 2017-12-29 22:24:33 +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 Improve error message as asked in issue #1078 2017-04-10 15:26:11 +02:00
stats_server.py Copyright 2017 2017-01-09 12:09:17 +01:00
stats.py Export module is now dynamic. Update doc 2017-12-28 13:01:37 +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

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