Background monitors¶
Set a condition like "alert me if /odom drops below 10 Hz" — Scry
watches in the background and fires an alert into chat the moment the
condition trips.
How to set one¶
Just ask Scry:
Scry sets up the monitor and confirms it in chat ("Monitor armed: /odom rate < 10 Hz"). The monitor is now live.
You can also set monitors on:
- Topic message field values — "alert me if
/battery_state.percentagedrops below 20" - Topic publish rates — as above
- Service availability — "alert me if
/global_costmap/clear_entirely_global_costmapbecomes unavailable" - Node liveness — "alert me if
/navigation_lifecycle_managerdies"
Edge-triggered, not level-triggered¶
Monitors fire once per false-to-true transition, not continuously. If your battery drops to 19% the monitor fires; it does not keep firing every second while battery stays at 19%. Re-fires when battery goes above the threshold and then back below.
This matches what you actually want: notifications when something changed, not a stream of "still bad."
Where alerts show up¶
When a monitor trips, an assistant message appears in chat:
Note: Monitor fired:
/odom rate < 10 Hz— current value 7.4 Hz[robot context excerpt]
It looks identical to a regular assistant reply (same alignment, same brand mark). Difference is the Note: glyph and the explicit "Monitor fired" prefix.
Scry sees this message on the next turn, so you can ask follow-ups like "what's causing the rate drop?" and it'll have full context.
Where monitors run¶
Monitors run on your phone, watching the robot's live data:
- The phone keeps a live stream open to the robot for each monitor and checks the condition as new data arrives.
- They run while the app is open and continue while it's in the background, but they don't persist across a full app restart.
That makes monitors ideal for "I'm working with the robot right now and don't want to miss this." They're not a replacement for a permanent alerting system on the robot itself.
Listing and stopping monitors¶
Ask Scry to list your active monitors:
You'll get each monitor's condition and current value, rendered as a chip strip above the composer with a Stop button on each chip. You can also just tell Scry:
and it'll cancel it for you.
Notifications when the app is backgrounded¶
Monitors keep running even when Scry is in the background or your screen is off. When one trips, you get:
- A standard Android notification (requires the Notifications permission)
- The chat message appears in app on next foreground
The notification is just "Monitor fired on [robot name]" — tap it to open Scry directly to the chat where the alert landed.