glances/glances
2024-04-30 01:33:11 +05:30
..
amps Change the way AMP are loaded #1930 2023-10-15 18:33:50 +02:00
exports Export individual processes stats - Export dict are now sorted #794 2024-04-24 12:28:48 +02:00
outputs Docker memory usage uses the same algorithm than docker stats #2637 2024-04-29 22:54:53 +05:30
plugins cleanup: containers (plugin) - add inactive_file to stats only if present 2024-04-30 01:33:11 +05:30
__init__.py Glances 4.0.0 RC01 2024-04-28 17:49:05 +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 Processlist field description 2024-02-11 16:38:01 +01: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 Merge from develop 2023-05-10 01:13:38 +05:30
client.py Merge from develop 2023-05-10 01:13:38 +05:30
config.py Make the left menu configurable (in Curses and WebUI) #2648 2024-01-14 16:04:50 +01:00
cpu_percent.py drop: compat.py 2023-05-10 01:56:08 +05:30
event.py Correct issue on unittest 2024-03-17 17:29:01 +01:00
events_list.py Event is now a Dataclass 2024-03-17 17:07:26 +01:00
filter.py Export individual processes stats #794 2024-04-06 17:46:42 +02:00
folder_list.py Replace Bottle by FastAPI #2181 2023-12-16 15:00:04 +01:00
globals.py Newline in container command corrupts display / hides container #2733 2024-04-22 11:35:45 +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 Add the --hide-public-info option 2024-04-29 10:01:24 +02:00
outdated.py macOS: Read user config from ~/.config/glances #2636 2024-01-06 10:23:29 +01:00
password_list.py Make Glances (almost) compliant with REUSE #2042 2022-06-25 15:43:36 +02:00
password.py macOS: Read user config from ~/.config/glances #2636 2024-01-06 10:23:29 +01:00
ports_list.py Resolve conflict after develop merge 2022-07-09 14:03:12 +02:00
processes.py Export individual processes stats - Export dict are now sorted #794 2024-04-24 12:28:48 +02:00
programs.py Replace Bottle by FastAPI #2181 2023-12-16 15:00:04 +01:00
README.txt Rename any reference to Bottle in doc and dep file. Ready to refactor the main glances_restful_api.py file. 2023-11-26 10:02:30 +01:00
secure.py Improve secure.py 2023-06-17 16:28:27 +02:00
server.py Improve Makefile to split minimal, full and dev virtualenv 2023-05-17 15:42:39 +02:00
snmp.py chore: format - missed out black changes 2023-02-23 23:08:17 +05:30
standalone.py --stdout plugin.attr is not compliant with plugins returning list of dicts #2446 2024-04-24 19:47:57 +02:00
static_list.py Resolve conflict after develop merge 2022-07-09 14:03:12 +02:00
stats_client_snmp.py Solve conflicts 2022-10-29 11:13:13 +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 comment 2024-04-03 22:20:00 +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 Resolve conflict after develop merge 2022-07-09 14:03:12 +02:00
webserver.py If FastAPI server failed to start, Glances do not return a critical error #2675 2024-04-23 18:28:35 +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
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 (Based on FastAPI)
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 plugins
    ...
outputs
    => Glances UI
    glances_curses.py       The curses interface
    glances_restful-api.py  The HTTP/API & Web based interface
    ...
exports
    => Glances exports
    ...
amps
    => Glances Application Monitoring Processes (AMP)
    ...