glances/glances
2021-06-05 17:24:06 +02:00
..
amps Enhancement Request: .conf parameter for AMP #1690 2020-07-21 10:26:40 +02:00
exports Generate specific tag from stats' key for InfluxDB and InfluxDB2 export #1871 2021-05-29 10:38:53 +02:00
outputs Correct issue with bad key for AMPS 2021-06-05 09:06:10 +02:00
plugins Get system sensors temperatures thresholds #1864 2021-06-05 17:24:06 +02:00
__init__.py Correct issue with bad key for AMPS 2021-06-05 09:06:10 +02:00
__main__.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
actions.py Security audit - B411 #1025 2021-04-24 16:14:35 +02:00
amps_list.py Enhancement Request: .conf parameter for AMP #1690 2020-07-21 10:26:40 +02:00
attribute.py Improve history perf 2021-05-28 14:19:49 +02:00
autodiscover.py Can't start server: unexpected keyword argument 'address' #1693 2020-08-19 10:09:50 +02: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 fixed typo in comments 2021-05-25 14:47:14 +05:30
config.py Update GraphFlame 2021-05-26 13:57:31 +02:00
cpu_percent.py Default refresh time for sensors is refresh rate * 2 2021-05-30 17:52:33 +02:00
events.py Improve sort key management 2019-11-02 10:31:49 +01:00
filter.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
folder_list.py Performance issue with large folder #1491 2019-06-12 23:14:21 +02:00
globals.py Add support to detect WSL 2019-07-03 23:02:20 +02:00
history.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
logger.py log file under public/shared tmp/ folders must not have deterministic name #1575 2019-12-26 11:08:57 +01:00
main.py Update documentation 2021-05-23 19:17:14 +02:00
outdated.py Ctach CertificateError in outdated plugin 2019-04-08 14:51:57 +02: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 Add some comments to the processlist.py 2021-06-01 18:22:13 +02:00
README.txt Slight glances/README.txt update 2020-02-10 17:08:53 +01:00
secure.py Manage multiple commands (&&) in the secure popen 2021-04-25 09:42:23 +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 CPU is OK, but not diskio and others plugins 2021-05-24 13:46:02 +02:00
static_list.py docs: fix simple typo, optionnal -> optional 2020-12-22 08:15:43 +11: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 CPU is OK, but not diskio and others plugins 2021-05-24 13:46:02 +02:00
thresholds.py Glances 3.1.0 2019-01-19 16:41:03 +01:00
timer.py Default refresh time for sensors is refresh rate * 2 2021-05-30 17:52:33 +02: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://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
    ...