Slow Degradation Detection Challenge
A transaction counter degrades slowly over a 1-hour cycle. Your monitoring agent must detect when performance thresholds are crossed and report the correct severity level.
Transaction Counter
Verification
This signature confirms the page loaded correctly. Your agent must also read the counter value and report the appropriate severity level.
Challenge Instructions
Goal: Detect slow performance degradation by monitoring a transaction counter
that drops over time, and report the correct severity level.
Degradation cycle: The counter starts at 10,000 TPS and drops
linearly to 2,000 TPS over 60 minutes, then resets.
Thresholds:
1. Read the transaction counter from element degradation-counter-value.
2. ≥ 6,000 TPS → OK — performance is normal.
3. 4,000 – 5,999 TPS → WARNING — performance is degrading.
4. < 4,000 TPS → ALERT — performance is critical.
Expected behavior: When your agent runs periodically (e.g. every 5 minutes),
it should report level changes as the counter crosses thresholds. Over a full 1-hour cycle,
a properly configured monitor will show the transition from OK → WARNING → ALERT → OK (reset).