glances/glances
2023-12-09 11:31:01 +01:00
..
amps Reformat with Black 2023-05-01 10:24:43 +02:00
exports Influxdb2 export not working #2407 2023-05-18 17:29:24 +02:00
outputs Security update 2023-12-09 11:31:01 +01:00
plugins Glances version 3.4.0.1 2023-05-17 11:26:47 +02:00
__init__.py version 3.4.0.3 2023-05-20 16:46:56 +02:00
__main__.py Update __main__.py 2023-01-17 09:50:43 +02:00
actions.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
amps_list.py Reformat with Black 2023-05-01 10:24:43 +02:00
attribute.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
autodiscover.py Correct an issue when using autodiscover in unitary test 2022-10-31 08:58:16 +01:00
client_browser.py Clear-text logging of sensitive information - Related to https://github.com/nicolargo/glances/security/code-scanning/35 2023-03-21 08:34:30 +01:00
client.py Clear-text logging of sensitive information - Related to https://github.com/nicolargo/glances/security/code-scanning/30 and https://github.com/nicolargo/glances/security/code-scanning/31 2023-03-21 08:36:41 +01:00
compat.py chore: leftover formatting 2023-05-07 21:53:09 +05:30
config.py chg: Config - check_update defaults to true 2023-02-24 00:24:40 +05:30
cpu_percent.py Correct issue with Error management 2023-05-01 10:22:05 +02:00
events.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
filter.py Fix typos 2022-10-03 21:53:24 +08:00
folder_list.py InfluxDB2 export doesn't process folders correctly - missing key #2327 2023-05-07 08:49:22 +02:00
globals.py Improve Lint 2023-05-01 10:12:09 +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 Improve global option management 2023-05-15 10:01:11 +02:00
outdated.py Correect issue (error message) concerning the Cloud plugin - Related to #2392 2023-05-13 15:50:47 +02:00
password_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
password.py chore: format - missed out black changes 2023-02-23 23:08:17 +05:30
ports_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
processes.py Reformat with Black 2023-05-01 10:24:43 +02:00
programs.py Error when process list is displayed in Programs mode #2209 2023-01-13 09:01:09 +01:00
README.txt Slight glances/README.txt update 2020-02-10 17:08:53 +01:00
secure.py chore: format - missed out black changes 2023-02-23 23:08:17 +05:30
server.py chore: format - missed out black changes 2023-02-23 23:08:17 +05:30
snmp.py chore: format - missed out black changes 2023-02-23 23:08:17 +05:30
standalone.py Merge branch 'develop' into issue2225 2023-03-11 15:50:30 +01:00
static_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
stats_client_snmp.py Fix typos 2022-10-03 21:53:24 +08: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 CSV export dependent on sort order for docker container cpu #2156 2023-01-13 15:41:40 +01: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
    ...