glances/glances
2018-02-15 19:50:13 +01:00
..
amps Failed to connect to bus: No such file or directory #1156 2017-09-30 09:48:15 +02:00
exports RESTful 2018-02-15 19:45:45 +01:00
outputs RESTful 2018-02-15 19:45:45 +01:00
plugins 's/P[Ss][Uu]til/psutil/g' 2018-02-15 19:23:50 +01:00
__init__.py 's/P[Ss][Uu]til/psutil/g' 2018-02-15 19:23:50 +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 Display debug message if dep lib is not found #1224 2018-01-28 21:52:30 +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 Unconditionally use statistics module since we support Python 3.4+ now 2018-01-29 20:46:21 +01:00
config.py Context switches bottleneck identification #1212 2017-12-31 10:56:12 +01:00
cpu_percent.py Copyright 2017 2017-01-09 12:09:17 +01:00
filter.py Change the filter order name than cmdline 2018-02-06 21:18:21 +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 Drop support for psutil < 5.3.0 2018-02-15 18:38:25 +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 Ok but miss some extended stats (see line 348) 2018-01-21 22:53:22 +01:00
main.py RESTful 2018-02-15 19:45:45 +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.py 's/P[Ss][Uu]til/psutil/g' 2018-02-15 19:23:50 +01: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 Pypi -> PyPI 2018-02-15 19:50:13 +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 Implement rich comparisons rather than relying on __cmp__() 2018-01-29 19:19:19 +01: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
    ...