From b38f5caa41c67fbfa5bc3e9d767dafaf25797772 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Wed, 14 May 2025 16:57:15 -0500 Subject: [PATCH] Tweak to load values --- meshtastic/telemetry.options | 4 ++++ meshtastic/telemetry.proto | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/meshtastic/telemetry.options b/meshtastic/telemetry.options index a429c3e..f930bcd 100644 --- a/meshtastic/telemetry.options +++ b/meshtastic/telemetry.options @@ -10,3 +10,7 @@ *HealthMetrics.heart_bpm int_size:8 *HealthMetrics.spO2 int_size:8 + +*HostMetrics.load1 int_size:16 +*HostMetrics.load5 int_size:16 +*HostMetrics.load15 int_size:16 \ No newline at end of file diff --git a/meshtastic/telemetry.proto b/meshtastic/telemetry.proto index ec0b9c2..3e4af66 100644 --- a/meshtastic/telemetry.proto +++ b/meshtastic/telemetry.proto @@ -370,17 +370,17 @@ message HostMetrics { optional uint64 diskfree3_bytes = 5; /* - * Host system one minute load + * Host system one minute load in 1/100ths */ uint32 load1 = 6; /* - * Host system five minute load + * Host system five minute load in 1/100ths */ uint32 load5 = 7; /* - * Host system fifteen minute load + * Host system fifteen minute load in 1/100ths */ uint32 load15 = 8; }