public inbox for pdm-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Thomas Lamprecht <t.lamprecht@proxmox.com>
To: pdm-devel@lists.proxmox.com, Lukas Wagner <l.wagner@proxmox.com>
Subject: partially-applied: [PATCH datacenter-manager/proxmox{,-backup,-yew-comp} v2 00/25] metric collection for the PDM host
Date: Sat, 28 Mar 2026 18:52:50 +0100	[thread overview]
Message-ID: <177472036015.3264458.5476759270366627394.b4-ty@proxmox.com> (raw)
In-Reply-To: <20260319094617.169594-1-l.wagner@proxmox.com>

On Thu, 19 Mar 2026 10:45:20 +0100, Lukas Wagner wrote:
> This series add metric collection physical PDM hosts.
> 
> The patches for `proxmox` introduce three new crates:
>   - proxmox-disks: broken out from proxmox-backup, needed to read disk stats
>   - proxmox-parallel-handler: also broken out from proxmox-backup,
>     needed as a dependency for proxmox-disks. Since the scope was manageable,
>     this series improves the existing code a bit by adding a dedicated error type,
>     some documentation and basic unit tests
>   - proxmox-procfs: as a new home for any procfs related modules. this patch series adds
>     a `pressure` module for reading pressure stall information for the host and cgroups.
>     The general idea is that we should move other procfs helpers from proxmox-sys into
>     this new crate, but to avoid scope explosion this is not done as a part of this
>     series
> 
> [...]

Applied all but the disks commits from the proxmox workspace subseries, thanks!
Will look a bit into how proxmox-disks might get improved from it's
pre-existing status quo, to ideally avoid that the issue I saw back then leak
into other products, but if that bears some fruits, I'll add this on top of
your series in any case.

proxmox:
[01/11] parallel-handler: import code from Proxmox Backup Server
        commit: d631b2c71581ae84bea84ec56efe588932a3a040
[02/11] parallel-handler: introduce custom error type
        commit: 06f524fee0d7dc6729f83d140f89b11d15b0604e
[03/11] parallel-handler: add documentation
        commit: 53f217d79d10d8d67e3e74f41cd7838595fd10e4
[04/11] parallel-handler: add simple unit-test suite
        commit: dbdb321358e162017035aa552b7916cd013e1bef
[05/11] disks: import from Proxmox Backup Server
        commit: 7668d4d33d4a69f2517c277366c9083896be7b46
[06/11] disks: fix typo in `initialize_gpt_disk`
        commit: a2661a48cd327446ea53b81a07e547a877ebeb70
[07/11] disks: add parts of gather_disk_stats from PBS
        commit: eff06b2e7b6b8f9731adc259589cf666f6247197
[08/11] disks: gate api macro behind 'api-types' feature
        commit: 1177a96928db4bc348a046654d7ca34f8bcdf6b3
[09/11] disks: clippy: collapse if-let chains where possible
        commit: 20b35aaa436b65b2ae78364a144c0c2f51497721
[10/11] procfs: add helpers for querying pressure stall information
        commit: b0c53116cc870193770d57e4a251c86e2f6d749a
[11/11] time: use u64 parse helper from nom
        commit: 1e3171a802c386d6eedc88cb1adc8f6e8cd4ab0b




      parent reply	other threads:[~2026-03-28 17:55 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-19  9:45 Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 01/25] parallel-handler: import code from Proxmox Backup Server Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 02/25] parallel-handler: introduce custom error type Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 03/25] parallel-handler: add documentation Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 04/25] parallel-handler: add simple unit-test suite Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 05/25] disks: import from Proxmox Backup Server Lukas Wagner
2026-03-27 21:13   ` Thomas Lamprecht
2026-03-19  9:45 ` [PATCH proxmox v2 06/25] disks: fix typo in `initialize_gpt_disk` Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 07/25] disks: add parts of gather_disk_stats from PBS Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 08/25] disks: gate api macro behind 'api-types' feature Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 09/25] disks: clippy: collapse if-let chains where possible Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 10/25] procfs: add helpers for querying pressure stall information Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox v2 11/25] time: use u64 parse helper from nom Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox-backup v2 12/25] tools: move ParallelHandler to new proxmox-parallel-handler crate Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox-backup v2 13/25] tools: replace disks module with proxmox-disks Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox-backup v2 14/25] metric collection: use blockdev_stat_for_path from proxmox_disks Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox-yew-comp v2 15/25] node status panel: add `children` property Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox-yew-comp v2 16/25] RRDGrid: fix size observer by attaching node reference to rendered container Lukas Wagner
2026-03-19  9:45 ` [PATCH proxmox-yew-comp v2 17/25] RRDGrid: add padding and increase gap between elements Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 18/25] metric collection: clarify naming for remote metric collection Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 19/25] metric collection: fix minor typo in error message Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 20/25] metric collection: collect PDM host metrics in a new collection task Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 21/25] api: fix /nodes/localhost/rrddata endpoint Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 22/25] pdm: node rrd data: rename 'total-time' to 'metric-collection-total-time' Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 23/25] pdm-api-types: add PDM host metric fields Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 24/25] ui: node status: add RRD graphs for PDM host metrics Lukas Wagner
2026-03-19  9:45 ` [PATCH datacenter-manager v2 25/25] ui: lxc/qemu/node: use RRD value render helpers Lukas Wagner
2026-03-28 17:52 ` Thomas Lamprecht [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=177472036015.3264458.5476759270366627394.b4-ty@proxmox.com \
    --to=t.lamprecht@proxmox.com \
    --cc=l.wagner@proxmox.com \
    --cc=pdm-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal