Commit Graph

24 Commits

Author SHA1 Message Date
nicolargo
80c20863d9 feat(v5): categorical thresholds + processlist VIRT/RES/IO + bold cmd
Three orthogonal improvements bundled under the processlist v5 surface:

1) Categorical thresholds (framework-level)
   - thresholds_v5 grows compute_level_categorical + read_thresholds_categorical:
     value-set membership instead of numeric comparison. Walked
     most-severe-first so misconfigured overlaps escalate to the higher
     bucket. Unmatched values return "ok" (v4 parity).
   - base_v5._compute_levels_for_item dispatches on schema flag
     ``threshold_type: "categorical"``; numeric path unchanged.
   - 8 new threshold unit tests (incl. CSV parsing, whitespace, pk-prefix).

2) processlist status + nice as categorical fields
   - status (R/W/Z/D/...) and nice (-20..19) become watched with
     ``threshold_type: "categorical"``, no defaults — operators opt in:
       [processlist]
       status_ok=R,W,P,I
       status_critical=Z,D
       nice_warning=-20,...,-1,1,...,19
     Without configuration: no _levels entry (no false positives).

3) processlist renderer: VIRT/RES + R/s/W/s + bold cmd
   - Adds VIRT (memory_info.vms) and RES (memory_info.rss) columns.
   - Adds R/s and W/s columns computed from io_counters
     ([r_new, w_new, r_old, w_old, io_tag]) / time_since_update;
     io_tag != 1 renders "?" (access denied or first cycle).
   - Status / nice cells inherit categorical _levels colour.
   - Command rendering ports v4 split_cmdline:
     /usr/bin/python3 myscript.py
       → "/usr/bin/" + **"python3"** + " myscript.py"
     Kthreads (empty cmdline) keep the [name] fallback.

v4 catalogue updated accordingly. Suite v5: 1370+30 green, lint clean.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-17 17:30:01 +02:00
nicolargo
645527de06 feat(v5): G4-processlist — port processcount + processlist plugins to v5
Last MCP gap closure. Both plugins reuse the v4 glances_processes
singleton (no engine rewrite — strategy two-phase): processcount calls
engine.update() + get_count() each cycle, processlist consumes the
pre-sorted list via get_list(). KNOWN_V5_MISSING_PLUGINS shrinks to ().

- processcount: scalar with total / running / sleeping / thread /
  pid_max; TUI mirrors v4's "TASKS N (M thr), R run, S slp, O oth"
  header.
- processlist: collection PK=pid; minimal column set CPU% / MEM% / PID /
  USER / THR / NI / S / Command, top-20 rows. cpu_percent and
  memory_percent are watched (50/70/90, prominent=False — parity fs).
- Engine-internal fields (memory_info, cpu_times, io_counters, gids,
  time_since_update, key) flagged internal=True so MCP/export keep
  them but the generic TUI skips them.
- Out of scope (deferred to G5 with args/config plumbing): extended
  view, programs aggregation, filter UI, interactive sort.

41 new tests (14 model + 27 renderer), v4 catalogue updated, MCP gap
log + adapter docstring updated.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-17 14:01:59 +02:00
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
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
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
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
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
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
ee1272c222 First implementation for Plugin v5: Load and Mem 2026-05-04 18:38:09 +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
4673da97ad Glances 5.x - Architecture choices 2026-04-26 15:06:00 +02:00