mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-05-22 07:34:47 +02:00
fix(health): adjust utilization thresholds to match real-world behavior
Updated channel utilization scoring thresholds: - UTIL_HEALTHY: 15% -> 20% (channel is clear) - UTIL_CAUTION: 20% -> 25% (slight degradation) - UTIL_WARNING: 25% -> 35% (severe degradation) - UTIL_UNHEALTHY: 35% -> 45% (mesh struggling) Previous thresholds were overly conservative. New values better reflect actual Meshtastic firmware behavior and when operators should take action. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
4ed154770d
commit
7de02fb924
4 changed files with 11 additions and 11 deletions
|
|
@ -758,11 +758,11 @@ export default function Reference() {
|
|||
<RefTable
|
||||
headers={['Estimated Airtime', 'Score', 'What It Means']}
|
||||
rows={[
|
||||
['Under 15%', '100', 'Channel is clear — this is the goal'],
|
||||
['15-20%', '75-100', 'Getting busy, but fine'],
|
||||
['20-25%', '50-75', 'Congested — firmware starts throttling GPS'],
|
||||
['25-35%', '25-50', 'Seriously congested — collisions happening'],
|
||||
['Over 35%', '0-25', 'Channel is overwhelmed'],
|
||||
['Under 20%', '100', 'Channel is clear — this is the goal'],
|
||||
['20-25%', '75-100', 'Slight degradation, occasional collisions'],
|
||||
['25-35%', '50-75', 'Severe degradation — firmware throttling active'],
|
||||
['35-45%', '25-50', 'Mesh struggling badly — reliability dropping'],
|
||||
['Over 45%', '0-25', 'Mesh is effectively dead'],
|
||||
]}
|
||||
/>
|
||||
<p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue