Hacker News new | ask | show | jobs
by kxbnb 140 days ago
Nice approach using the base URL feature as the interception point. That's the same pattern we've been using at toran.sh for API observability - swap a URL and you get visibility without SDK changes.

The "searchable logs of all conversations" piece is interesting. We focused more on the real-time view (watching requests as they happen during debugging) rather than historical search. Curious if you find yourself using the live view vs searching through logs more often?

One thing we ran into: when agents chain multiple API calls, having just the raw logs isn't enough - you need to correlate which calls came from which task/session. Did you add any grouping/correlation to LLMWatcher?

1 comments

Only reason I use searchable logs is, when I roll back something in claude conversation but later want to refer it.

Apart from that, may be somebody might find it useful for observing their usage patterns etc.

No grouping or correlation right now. Wanted to get some feedback/ opinions first