Commit Graph

885 Commits

Author SHA1 Message Date
nicolargo
779dee82ab feat(v5): G4-diskio — port diskio plugin to v5 (collection)
Last entry of ``KNOWN_V5_MISSING_PLUGINS`` after this commit:
``("processlist",)``.

Model (``glances/plugins/diskio/model_v5.py``):
- Fields: disk_name (PK, string), read_count / write_count
  (rate, number, internal — exportable for IOPS consumers but
  not rendered), read_bytes / write_bytes (rate, bytespers, watched,
  ``prominent=False``, ``strict_thresholds=True``, NO default
  thresholds).
- Sustained disk traffic is host-specific (a DB server may stream
  MB/s by design) — alerts only fire when operators set
  ``read_bytes_warning=...`` per-disk or per-field in
  ``[diskio]``. ``strict_thresholds=True`` blocks the bare-``<level>``
  fallback (same pattern as memswap.sin/sout) so a legacy
  ``[diskio] careful=50`` cannot trigger spurious alerts.
- ``read_time``/``write_time`` and the derived ``read_latency`` /
  ``write_latency`` of v4 are not ported — deferred with the
  ``--diskio-latency`` mode.
- ``psutil.disk_io_counters()`` may raise or return ``None`` on
  platforms without disk I/O support — model returns ``[]`` rather
  than crashing.

Renderer (``glances/plugins/diskio/render_curses_v5.py``):

    DISK I/O              R/s     W/s
    nvme0n1               0B      0B
    sda                   1.4M   732K

- 3-cell rows, 18 + 1 + 7 + 1 + 7 = 34 chars (fits sidebar cap).
- Sorted by disk_name. Cycle-1 disks (no rate baseline) are skipped
  entirely — no ``-`` placeholder wall on startup.
- Rate cells display ``auto_unit(bytes_per_sec)`` WITHOUT a trailing
  ``/s`` — header carries the per-second semantic (v4 parity).
- Long disk names tail-truncated with leading underscore.

Adjacent:
- ``KNOWN_V5_MISSING_PLUGINS`` shrinks to ``("processlist",)``.
- ``test_attach_mcp_logs_known_v5_gaps`` updated.
- v4 catalogue grows a ``## diskio`` section +  footer.

28 new tests (13 model + 15 renderer). Full v5 suite: 762 passed.
2026-05-15 17:47:07 +02:00
nicolargo
1da7047688 Change default thresolds minimum duration for memswap 2026-05-15 17:11:47 +02:00
nicolargo
f080a48937 feat(v5): G4-memswap — port the memswap plugin to v5 (scalar)
Sister of the v5 ``mem`` plugin. Same pattern, slimmer layout
(single-column body — v4 ``memswap.msg_curse`` does not 2-col).

Model (``glances/plugins/memswap/model_v5.py``):
- ``total`` / ``used`` / ``free`` — bytes, snapshot.
- ``percent`` — watched + prominent, default thresholds 50/70/90
  (same ladder as ``mem`` for UX consistency).
- ``sin`` / ``sout`` — cumulative in v4; v5 exposes them as
  bytes/sec via ``rate: True``.
- Tolerates platforms without a swap file (Illumos, OpenBSD —
  issues #1767, #2719): psutil raises, model returns ``{}`` so
  the scheduler tick keeps going.

Renderer (``glances/plugins/memswap/render_curses_v5.py``):

    SWAP   25.0%
    total  16.0G
    used    4.0G
    free   12.0G

- Line 1: ``SWAP`` (HEADER) + percent cell coloured by ``_levels.percent``.
  Title escalates to warning/critical when the prominent percent reaches
  those levels.
- Lines 2-4: ``total`` / ``used`` / ``free`` as label/value pairs.
- Value column floored at 6 chars so it does not jiggle between cycles.

Adjacent changes:
- ``KNOWN_V5_MISSING_PLUGINS`` in ``mcp_adapter_v5`` shrinks to
  ``processlist, fs, diskio`` — memswap no longer surfaces in the
  MCP startup gap log.
- v4 catalogue (``docs/architecture/tui-v4-rendering-patterns.md``)
  grows a ``## memswap`` section +  footer pointing to the new
  renderer.

22 new tests (11 model + 11 renderer). Full v5 suite: 669 passed
(+22), lint clean.
2026-05-15 14:17:04 +02:00
nicolargo
ebe0382252 docs(v5): G3-MCP Task 5 — conf + architecture §11 (MCP endpoint)
- ``conf/glances.conf``: add a commented ``[outputs] enable_mcp``
  entry above the existing ``mcp_path`` / ``mcp_allowed_hosts`` keys.
  Notes that the gate is off by default and that ``--enable-mcp``
  flips it via the config overlay.
- ``docs/architecture/glances-v5-architecture-decisions.md``: new
  §11 "MCP endpoint" covering:
  - §11.1 opt-in lifecycle (CLI + config)
  - §11.2 adapter architecture + flow diagram
  - §11.3 resource/prompt inventory with v5 status per entry
  - §11.4 known v5 gaps (logged on mount)
  - §11.5 alert schema (v5-native, no v4 translation — decision
    logged in the G3-MCP plan)
  - §11.6 auth (HTTP middleware passes SSE through; no special MCP
    middleware needed)
  - §11.7 DNS rebinding (independent ``mcp_allowed_hosts``)
  - §11.8 out of scope (history buffer, unported v4 plugins,
    WebSocket transport)
2026-05-15 13:58:30 +02:00
nicolargo
896eeca58f docs(v5): G3-MCP plan — port the MCP endpoint to v5 via an adapter
Plan covers 6 tasks: adapter, mount in webserver_v5 (gated by
[outputs] enable_mcp), CLI overlay propagation, explicit gap docs
(history + missing plugins), conf + architecture doc, final sweep.

Scope contract: do NOT rewrite GlancesMcpServer. Introduce a thin
McpStatsAdapter / McpPluginView in glances/outputs/mcp_adapter_v5.py
that exposes the v4-style stats interface (getPluginsList,
get_plugin(name), get_raw, get_limits, ...) over StatsStoreV5 +
plugin registry + GlancesAlerts.

Surfaces v5 gaps explicitly:
- no history → adapter returns {} + WARN log (1× per plugin);
- processlist/fs/diskio/memswap not in v5 → get_plugin returns None,
  MCP raises the canonical "Plugin not found" ValueError;
- auth+SSE: middleware must not buffer; verify or port v4
  GlancesMcpAuthMiddleware pattern.

Decision logged: alert schema = v5-native (option a, no v4 translation).
2026-05-15 12:08:07 +02:00
nicolargo
61fb09cdf9 docs(v5): G2 Task 5 — architecture §1.5 mode dispatch
- New §1.5 "Mode dispatch (CLI ↔ runtime)": alignment table, ASCII
  diagram of the assemble/serve branching, rationale (v4 mental model
  + remove unauthenticated default footgun), and open points (fate of
  --quiet/--no-tui, client mode).
- §1.4 (TUI thread): rephrased "CLI control" + "Shutdown" bullets to
  reflect that default mode no longer starts uvicorn.
- §4 (REST API): preamble notes the API server is now opt-in via -s;
  every subsection below applies to server mode exclusively.

MCP wiring is referenced as deferred to a dedicated G3-MCP plan
(consistent with Task 2 of G2 being dropped).
2026-05-15 11:26:52 +02:00
nicolargo
47c9d8241c chore(v5): G2 Task 4 — Makefile targets for the new mode dispatch
- ``run-v5``: TUI mode (the new default — help string updated to
  reflect it no longer binds a socket).
- ``run-v5-debug``: TUI mode + ``-d``.
- ``run-v5-server`` (new): REST API mode (``-s``), headless.
- ``run-v5-server-debug`` (new): REST mode + ``-d``.
- ``run-v5-mcp`` (new): REST + ``--enable-mcp``. The flag is accepted +
  validated today but the MCP mount is not yet wired into v5 — see the
  plan footer (Task 2 dropped, deferred to a dedicated G3-MCP plan).

Also updates the plan file: marks Task 2 (MCP gate) as DROPPED with a
rationale section explaining that MCP is not yet wired into v5
``webserver_v5``, so there is nothing to gate. The CLI flag + validation
shipped in Task 1 are kept; the actual mount + gate will land in
G3-MCP.
2026-05-15 11:25:39 +02:00
nicolargo
f4417cdbba docs(v5): mark Phase 2 G1 per-plugin renderers in catalogue + NEWS
- Add a " v5 renderer at ..." footer line under each migrated plugin
  section of the v4 TUI rendering catalogue (cpu, mem, load, network,
  percpu). Network + percpu footers also note which v4 modes are
  deferred to G2+ (--byte / --network-cumul / --network-sum and the
  quicklook-enabled toggle).
- New NEWS.rst entry for ``5.0.0a3 (Phase 2 G1)`` summarising the
  per-plugin renderer convention, the discovery mechanism, the new
  schema renderer hints (short_name / internal), and the visual-parity
  groundwork (prominent reverse pairs, 3-cycle alert warmup, top-row
  spacing, CPU/perCPU toggle, dynamic title color, psutil baseline guard).
2026-05-15 10:18:11 +02:00
nicolargo
cbed074842 feat(v5): add short_name renderer hint (v4 parity)
Plugins can declare an optional short_name in fields_description for
compact label display in tight per-plugin renderers:

  ctx_switches.short_name = 'ctx_sw'
  soft_interrupts.short_name = 'sw_int'
  interrupts.short_name = 'inter'

A new field_label(schema, field_name, prefer_short=False) helper
encapsulates the resolution order:
  - prefer_short=True: short_name -> label -> field name
  - prefer_short=False (default, generic renderer): label -> field name

The cpu render_curses_v5 now pulls every column label via
field_label(..., prefer_short=True) instead of hardcoding labels.

Mirrors v4 short_name (cf. curse_add_stat in plugins/plugin/model.py).
Documented in architecture decisions section 3.2 and SKILL-plugin.md.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 16:07:10 +02:00
nicolargo
cdf4515a9b docs(v5): add Phase 2 G1 plan — per-plugin renderers for mem/load/network/percpu
One commit per plugin, each replicating its v4 msg_curse layout. Each
task starts by reading the v4 source + catalogue (project memory rule
`feedback-tui-v5-must-mirror-v4`).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 14:45:59 +02:00
nicolargo
d2d338fea6 docs(v5): document per-plugin render_curses_v5 convention
- SKILL-plugin.md: new section explaining when and how to write a
  per-plugin TUI renderer; pointers to cpu reference + v4 catalogue.
- architecture §1.4: per-plugin renderer documented as the escape hatch
  for layouts the generic table fallback cannot produce.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 14:44:01 +02:00
nicolargo
b7d8cd1d37 feat(v5): TUI blocks render as aligned 2/N-col tables + filter internal fields
Two TUI corrections raised by the v4/v5 visual comparison:

1. Internal fields (time_since_update, cpucore) leaked into the UI. They
   are computation support (rate divisor, threshold normalizer) and
   should never be displayed. Introduces a new `internal: True` flag in
   the `fields_description` schema. Tagged:
   - time_since_update (base class, every plugin)
   - cpucore (cpu, load)

   The flag is rendering-only: the field still goes through the REST
   API and is available to `normalize_by` / `rate` computations.

2. Plugin blocks rendered as left/right cells with a fixed 1-space gap,
   which made cpu/mem/load blocks misaligned. Now:
   - scalar blocks: 2-column table (label left-aligned, value right-aligned)
   - collection blocks: N-column table (primary key left-aligned, rest right)
   Column widths auto-fit the widest content per block.

Docs:
- SKILL-plugin.md: `internal` added to renderer-hints table
- glances-v5-architecture-decisions.md §3.2: `internal` documented

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-12 22:23:46 +02:00
nicolargo
9c653d1e3a docs(v5): flesh out §1.4 curses TUI integration
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-12 17:46:19 +02:00
nicolargo
5187a8d735 Add plan for Phase 2 / G0 2026-05-12 17:34:12 +02:00
nicolargo
6c6050dca8 docs(v5): document optional fields_description renderer hints (format, column_width) 2026-05-12 17:30:45 +02:00
nicolargo
bd930568a3 docs(v5): document v4 msg_curse() patterns for the 5 Phase 1 plugins
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-12 17:26:40 +02:00
nicolargo
aae4b68f6a Add phase 2 plan 2026-05-12 17:16:19 +02:00
nicolargo
15fbf5de58 Introduce min_duration_seconds per field for thresolds / Add a new main entry point for Glances v5 2026-05-12 13:28:14 +02:00
nicolargo
4d829d36c7 Add first route for API 2026-05-12 11:31:05 +02:00
nicolargo
35b4ba1416 Add first version of the new Wevserver for v5 (based on FastAPI 2026-05-12 10:55:14 +02:00
nicolargo
8f56d242cc Shell actions added to the scheduler 2026-05-11 18:00:27 +02:00
nicolargo
452395bff4 First version of network 2026-05-11 17:03:44 +02:00
nicolargo
f443d8ae05 Implement CPU plugin v5 - Add normalize_by option to normalise a limit by another field (ex: load and ctx switch) 2026-05-06 18:30:50 +02:00
nicolargo
9ee4cdb64b Merge branch 'develop' into develop-v5 2026-05-05 08:52:44 +02:00
nicolargo
77131e745f Update doc for #1711 2026-05-05 08:52:20 +02:00
nicolargo
ee1272c222 First implementation for Plugin v5: Load and Mem 2026-05-04 18:38:09 +02:00
nicolargo
da2248b63b Merge branch 'develop' into develop-v5 2026-05-04 17:22:01 +02:00
nicolargo
53a8a4836d Update documentation for hide/show #3546 2026-05-04 14:59:20 +02:00
nicolargo
ddb5ced121 Update SKILLS (and make change for the security one in order to include all CVE of Glances v4) 2026-05-03 16:55:32 +02:00
nicolargo
06f62ff532 Implement StatsStore - Class + unitest 2026-05-02 08:59:35 +02:00
nicolargo
c0be41693a feat(v5): GlancesConfigV5 layered configuration loader (Phase 0.2)
Add the v5 configuration module with layered overlay (defaults → /etc →
  XDG →  → -C → env vars), typed get() accessor,
  as_dict_secure() for CVE-2026-32609 redaction, and a reload() hook
  preparing the Phase 4 mtime polling.

  The module lives next to glances/config.py (v4) without import or
  inheritance — strict isolation throughout the v5 transition.

  42 unit tests (unittest only, no pytest per architecture decision §9),
  ~30 ms total. Ruff check + format clean.

  Includes the SKILL-config.md contributor doc.

  Refs: docs/architecture/glances-v5-architecture-decisions.md (§2, Phase 0)
2026-04-26 17:30:43 +02:00
nicolargo
4673da97ad Glances 5.x - Architecture choices 2026-04-26 15:06:00 +02:00
nicolargo
746f0f7011 GPU Monitoring (ARM / RaspberryPi) #1048 2026-04-21 11:37:36 +02:00
nicolargo
05ff62d883 version 4.5.4 2026-04-19 09:41:52 +02:00
nicolargo
30730f4eb4 Prepare Glances 4.5.4 version 2026-04-19 09:36:25 +02:00
nicolargo
b50f306e86 Update doc 2026-04-18 11:40:18 +02:00
nicolargo
cec380536f Overwrite thresholds for a specific sensor is not taken into account - Related to #3525 2026-04-18 09:45:29 +02:00
nicolargo
fdfb977b1d Cross-Origin Information Disclosure via Unauthenticated REST API (/api/4) due to Permissive CORS in Glances - Mitigate CVE-2026-34839 2026-04-12 09:22:36 +02:00
nicolargo
24615e52e7 Update doc and webui 2026-04-11 09:26:20 +02:00
csvke
a8023b3e4c RV1126BP-70: Add config, docs, and unit tests for MPP plugin
- Add [mpp] section to conf/glances.conf with disable=True
- Add docs/aoa/mpp.rst documentation page and index entry
- Add unit test test_026_mpp with Rockchip MPP test fixtures
2026-04-11 01:34:44 +08:00
nicolargo
b4c963e173 version 4.5.3 2026-03-29 16:56:27 +02:00
nicolargo
f5f1c33a3c Prepare release 4.5.3 2026-03-29 16:41:48 +02:00
nicolargo
07f345e233 Replace py-spy by memray for Flamegraph generation 2026-03-28 11:06:26 +01:00
nicolargo
36bc0216f5 Command Injection via Dynamic Configuration Values - Mitigate CVE-2026-33641 2026-03-28 09:55:51 +01:00
nicolargo
a921a1c828 Update doc 2026-03-22 10:37:22 +01:00
Nicolas Hennion
22db0da0c8 Update clickhouse.rst 2026-03-22 10:36:31 +01:00
nicolargo
b6a694f38f Add export to ClickHouse #3320 2026-03-22 10:15:17 +01:00
nicolargo
f6bc98451e Update docs and deps 2026-03-15 16:44:28 +01:00
Christian Rishøj
c53cb847b9 #3480 fix review nits
- Remove unnecessary hasattr guard on get_refresh()
- Init _last_stats_computed_time to time.time() to avoid stale first reading
- Guard against ZeroDivisionError in IO/network rate calculations
- Use title-case status from pylxd directly
- Add trailing newline to containers.rst

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 14:50:48 +01:00
Christian Rishøj
d6395e8d3e #3480 address review feedback
- Split _compute_activity_stats into sub-functions per review feedback
- Pass Glances refresh interval as LXD poll interval
- Update containers docs to mention LXD/pylxd

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 14:44:21 +01:00