glances/glances
2019-01-24 22:27:17 +01:00
..
amps Glances 3.1.0 2019-01-19 16:41:03 +01:00
exports fix tablename cassandra export and variabilize the cassandra table-name 2019-01-23 10:13:49 +01:00
outputs Merge pull request #1396 from limfreee/develop 2019-01-20 10:07:25 +01:00
plugins Fan speed always high CPU consuming on my laptop... 2019-01-24 22:27:17 +01:00
__init__.py Documentation is unclear how to get Docker information #1386 and also add a all target to the Pip install in order to install all dependencies 2019-01-20 10:56:30 +01:00
__main__.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
actions.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
amps_list.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
attribute.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
autodiscover.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
client_browser.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
client.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
compat.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
config.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
cpu_percent.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
events.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
filter.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
folder_list.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
globals.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
history.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
logger.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
main.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
outdated.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
password_list.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
password.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
ports_list.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
processes.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
README.txt Support for exporting data to a MQTT server 2018-08-13 13:00:42 +02:00
server.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
snmp.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
standalone.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
static_list.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
stats_client_snmp.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
stats_client.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
stats_server.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
stats.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
thresholds.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
timer.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
web_list.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
webserver.py Glances 3.1.0 2019-01-19 16:41:03 +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_mqtt.py         The MQTT export module
    glances_opentsdb.py     The OpenTSDB export module
    glances_rabbitmq.py     The RabbitMQ export module
    glances_statsd.py       The StatsD export module
    ...