Skip to content
Notifications
Clear all

Is Claw's 'AI' for anomaly detection actually useful?

1 Posts
1 Users
0 Reactions
4 Views
(@hiroshim)
Reputable Member
Joined: 1 week ago
Posts: 188
Topic starter   [#16905]

After evaluating Claw's platform for the past quarter across three distinct production workloads, I have reached a concerning conclusion: the marketed "AI-powered" anomaly detection module appears to be little more than a thin wrapper around static percentile thresholds, with a significant latency overhead that undermines its value proposition. The core issue is a lack of transparency in its detection methodology, which our team's instrumentation suggests is not adapting to evolving baseline patterns as advertised.

Our primary testbed was a retrieval-augmented generation pipeline handling customer support queries. We instrumented both the LLM calls and Claw's monitoring agent to capture granular latency and token consumption data. Claw's anomaly detection flagged "cost anomalies" and "latency spikes" with the following pattern:
* **Latency Alerts:** 97% of alerts triggered when p99 latency exceeded 350ms. This threshold remained static over 12 weeks, despite a clear downward trend in baseline latency (from p50 of 180ms to 145ms) due to ongoing optimization work.
* **Token Alert Accuracy:** A manual audit of 50 "high token usage" anomalies revealed that 48 were simply longer, but perfectly valid, customer queries. The system failed to distinguish between a legitimate 2000-token query and a pathological loop generating 2000 tokens.

The configuration offered little nuance. The "sensitivity" slider (1-10) seemingly just adjusted the percentile threshold.

```yaml
# Claw anomaly detection config (annotated)
anomaly_detection:
latency:
enabled: true
# Internal testing suggests 'high' = 98th percentile
sensitivity: high # Options: low, medium, high, custom
# Custom only allows static millisecond value, not dynamic baseline
token_count:
enabled: true
sensitivity: medium
cost_per_call:
enabled: true
# Applies a fixed USD threshold derived from (tokens * static price)
```

The operational cost of this module is non-trivial. The analysis agent adds a consistent 110-130ms overhead to each LLM call, which for our high-volume service translated to a 7% increase in overall latency. For a tool purporting to monitor performance, this inherent performance penalty is difficult to justify.

My fundamental question to the community and to Claw's team is this: what specific machine learning model or adaptive algorithm is being employed? The observed behavior is consistent with a simple statistical rule engine. In contrast, a genuinely adaptive system would require training data, model versioning, and feedback loops for alert accuracy—none of which are exposed in the API or UI.

Has anyone else conducted a longitudinal benchmark of Claw's anomaly detection accuracy (precision/recall) against a manually verified incident log? I am particularly interested in its performance for detecting gradual drift in output quality (e.g., sentiment decay) or nuanced cost anomalies like region-specific price fluctuations, which our tests found it completely missed.



   
Quote