glances/glances
2022-09-18 14:29:11 +02:00
..
amps Lint the code 2022-08-20 10:01:37 +02:00
exports Fix code scanning alert - Clear-text logging of sensitive information #2124 2022-09-09 20:29:01 +02:00
outputs [WINDOWS] Reorganise CPU stats display #2131 2022-09-18 14:29:11 +02:00
plugins [WINDOWS] Reorganise CPU stats display #2131 2022-09-18 14:29:11 +02:00
__init__.py On the road of version 3.3.0 2022-07-28 18:17:04 +02:00
__main__.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
actions.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
amps_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
attribute.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
autodiscover.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
client_browser.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
client.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
compat.py Update formater in the Makefile with flake8 and autopep8/autoflake 2022-08-20 09:39:49 +02:00
config.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
cpu_percent.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
events.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
filter.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
folder_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
globals.py Re-apply patch for issue #1401 2022-09-08 10:31:24 +02:00
history.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
logger.py Lint the code 2022-08-20 10:01:37 +02:00
main.py Update formater in the Makefile with flake8 and autopep8/autoflake 2022-08-20 09:39:49 +02:00
outdated.py Update formater in the Makefile with flake8 and autopep8/autoflake 2022-08-20 09:39:49 +02:00
password_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
password.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
ports_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
processes.py Improve comment 2022-09-11 12:16:30 +02:00
programs.py fix: fix unit testing on macOS 2022-07-09 16:34:00 +08:00
README.txt Slight glances/README.txt update 2020-02-10 17:08:53 +01:00
secure.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
server.py Lint the code 2022-08-20 10:01:37 +02:00
snmp.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
standalone.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
static_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
stats_client_snmp.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
stats_client.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
stats_server.py Remove multiple message in server/client mode concerning the extended proccesses 2022-09-11 18:09:07 +02:00
stats.py Update formater in the Makefile with flake8 and autopep8/autoflake 2022-08-20 09:39:49 +02:00
thresholds.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
timer.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
web_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
webserver.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02: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://glances.readthedocs.io/en/stable/

===

__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_export.py       "Father class" for exports
    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
    ...
amps
    => Glances Application Monitoring Processes (AMP)
    glances_amp.py          "Father class" for AMPs
    glances_default.py      Default AMP
    glances_nginx.py        Nginx AMP
    ...