get_server_status reports timeSinceStartS: 0 for a field the upstream /info does not send #214
Labels
No labels
burndown-2026-06
headless
autonomy
async-consult
autonomy
epic
autonomy
headless
autonomy
live-collab
c#
priority
P0
priority
P1
priority
P2
priority
P3
priority
P4
role/ai
role/creator
role/design
role/director
role/engineer
role/exec
role/human
role/ops
role/qa
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
coilyco-gaming/eco-app#214
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Symptom
get_server_statusreturns:The upstream game server does not send that field. Full top-level key list from
http://eco.coilysiren.me:3001/info, fetched 2026-08-12 ~19:38 UTC, contains no key matchingTime*:So the
0is a default for an absent field, not a measurement.Why it is worth fixing
timeSinceStartS: 0reads as "the server just restarted." That is a specific, wrong, and load-bearing claim.It cost real time today: community members reported a suspected time skip in
#adminson 2026-08-12, and this field is exactly what someone would reach for to check elapsed time. It answers confidently and incorrectly. Zero and unknown are different states and a telemetry surface should not conflate them — particularly one whose consumers include LLM agents that will not question a plausible-looking number.Fix
Absent upstream fields should surface as
nullor be omitted, never defaulted to0. Worth a pass over the rest of the mapping for the same pattern rather than patching this one field — any numeric field defaulted on absence has the same defect.Acceptance
timeSinceStartSisnull/omitted when upstream does not supply it.get_server_statusmapping defaults to0on absence.Origin
Split out of
coilyco-gaming/eco-ops#73, which flagged it as a secondary observation while investigatingTotalCulture: 0.0. That one is genuinely upstream; this one is ours.