Claude: I checked DELETE activity across all tables today. The session_tokens table had by far the most DELETEs — 45,230 — likely from automatic session cleanup. The next highest was temp_results with 2,100.
You: What is the oldest registered event that happened today on the production server?
Claude: The earliest event today was an INSERT into production.heartbeat at 2026-03-20 00:00:01 UTC — a routine heartbeat write from the replication monitor.
You: Who was the first person to modify the pricing table in ecommerce since Monday?
Claude: Using forensic enrichment, the first change was an UPDATE at 2026-03-17 08:12:44 UTC by deploy_bot@10.0.3.22 (via mysql-connector-python). It changed the discount_pct column on product_id 891 from 0.10 to 0.15.
Be specific about the server — if you have multiple servers, mention which one: "on the production-main server"
Use time ranges — "in the last hour", "since March 1st", "between 2pm and 3pm yesterday"
Filter by event type — "show me only DELETEs", "what was updated"
Reference tables explicitly — "in the orders table in the mydb schema"
Ask volume questions — "how many writes happened today?" or "which table is busiest?" — Claude will use the efficient count_events tool instead of fetching individual rows
Ask for the first or oldest event — "what was the first INSERT today?", "show me the oldest delete since the deploy" — Claude can use order: ASC to retrieve the oldest events first without scanning through all results