glances/glances
sangoh.hong f7e24b2233 curses-browser's server list paging added.
Browsing with Up/Down/PageUp/PageDown key.
2019-01-05 00:09:23 +09:00
..
amps AMPs error if no output are provided by the system call #1314 2018-09-04 23:15:30 +02:00
exports Some field name are incorrect in CSV export #1372 and Prohibit some plug-in data from being exported to influxdb #1368 2018-12-18 09:53:18 +01:00
outputs curses-browser's server list paging added. 2019-01-05 00:09:23 +09:00
plugins Drive name with special characters causes crash #1383 2018-12-31 11:07:32 +01:00
README.txt Support for exporting data to a MQTT server 2018-08-13 13:00:42 +02:00
__init__.py Resolve issue in init file 2018-09-05 08:00:28 +02:00
__main__.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
actions.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
amps_list.py AMPs error if no output are provided by the system call #1314 2018-09-04 23:15:30 +02:00
attribute.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
autodiscover.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
client.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
client_browser.py Terminal window stuck at the last accessed *protected* server #1275 2018-07-28 14:32:14 +02:00
compat.py Drive name with special characters causes crash (correct) #1383 2018-12-31 11:27:31 +01:00
config.py Disable plugin from Glances configuration file #1378 2018-12-27 09:58:21 +01:00
cpu_percent.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
events.py Add some comments 2018-12-09 09:52:42 +01:00
filter.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
folder_list.py Correct folders alert 2018-12-07 22:47:58 +01:00
globals.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
history.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
logger.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
main.py Create an option to set the username to use in Web or RPC Server mode #1381 2018-12-29 19:10:48 +01:00
outdated.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
password.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
password_list.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
ports_list.py Ok for Web and Port 2018-12-03 21:12:56 +01:00
processes.py ERROR -- Can not grab extended stats (invalid attr name 'num_fds') #1351 2018-11-18 21:23:13 +01:00
server.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
snmp.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
standalone.py Implementation of the CSV format for the STDOUT plugin done. Had to update the documentation 2018-12-08 17:54:44 +01:00
static_list.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
stats.py Some field name are incorrect in CSV export #1372 and Prohibit some plug-in data from being exported to influxdb #1368 2018-12-18 09:53:18 +01:00
stats_client.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
stats_client_snmp.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
stats_server.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
thresholds.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
timer.py Change copyright year to 2018 2018-05-12 18:38:37 +02:00
web_list.py Ok for Web and Port 2018-12-03 21:12:56 +01:00
webserver.py Change copyright year to 2018 2018-05-12 18:38:37 +02: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_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
    ...