---
title: "When Logs Talk Back"
newsletter: "MLOps Community"
date: 2026-06-11
source: https://aaif.live/newsletters/mlopscommunity/2026-06-11-when-logs-talk-back
---

# When Logs Talk Back

*Plus... agent guardrails, AI memory, and real-time feature consistency.*

*MLOps Community — Agentic AI Foundation, 2026-06-11*

As if AI scams weren't ugly enough [https://www.theguardian.com/business/2026/jun/09/bank-of-england-ai-scams-deepfakes-nigel-farage-andrew-bailey-fight-x-question-time].

## Dodge-board

Logs are underrated because dashboards made us lazy.

If agents can reconstruct metrics and traces from logs, what would you rather debug with: Dashboards or Chat?

[DASHBOARDS](https://gatewaze.mlops.community/offer/surveys/?sid=yesno&question=Logs+are+underrated+because+dashboards+made+us+lazy.+If+agents+can+reconstruct+metrics+and+traces+from+logs%2C+what+would+you+rather+debug+with%3A+Dashboards+or+Chat%3F&y=DASHBOARDS&n=CHAT&oneclick=true&accept=true)

[CHAT](https://gatewaze.mlops.community/offer/surveys/?sid=yesno&question=Logs+are+underrated+because+dashboards+made+us+lazy.+If+agents+can+reconstruct+metrics+and+traces+from+logs%2C+what+would+you+rather+debug+with%3A+Dashboards+or+Chat%3F&y=DASHBOARDS&n=CHAT&oneclick=true&accept=true)

## Go with the flow

Agents still working on that workflow-level trust.

## Real-time ML Is a Consistency Problem

Real-time ML usually sounds cleaner in diagrams than it feels in production.

The easy version is: events arrive, features update, models get fresh values, done. The harder version is keeping all of that consistent with the training data, cheap enough to run, and fast enough to serve when the feature is not just "latest value" but something like average transaction amount per user over the last 7 days.

That is where the feature layer starts to get messy.

If you compute those features in batch, you get correctness and repeatability, but freshness suffers. If you run a streaming job, you get fresher online values, but now you have to maintain state, handle window eviction, seed the stream with historical data, recover from data issues, and still generate point-in-time-correct training data. If the online path and the offline backfill path are built separately, they also have to keep agreeing as feature definitions change. That agreement is usually where production systems start to drift.

This is the unglamorous middle layer of production AI: not model architecture, not agent UX, but the machinery that decides whether the values going into the model are fresh, affordable, and historically correct.

One of Zipline’s posts surveys how different systems handle streaming features, comparing bring-your-own-compute approaches like Feast, batch-based systems like Snowflake, naive streaming approaches like Databricks declarative features, and Zipline’s own architecture.

For streaming features, Zipline drives both online serving and offline backfills from the same declarative feature definition. A 7-day average transaction amount per user can be served online while still being backfilled for arbitrary observation timestamps, so the training data matches what the system would have served at the time. Batch jobs seed and correct the streaming state, and the window state is compressed to a constant size relative to window length. Increasing the window size only increases the batch workload, and only on the first run. It does not grow the streaming state or the read-time payload, which is how Zipline says serving can stay under 10ms regardless of window size.

The batch computation post tackles the other side of the same problem. A naive rolling-window SQL job ends up scanning most of the same data every day. For a 5-day window, four of those five days are duplicated work on each run. Zipline's engine breaks aggregations into reusable intermediate representations, such as count and sum for an average, then combines or subtracts those cached pieces to produce the right window. For training backfills it reuses partial aggregates for the middle of a window and only reads raw events at the head and tail, where exact timestamp accuracy matters.

Real-time ML is rarely just a streaming problem. It is a consistency problem. The online feature value, the historical backfill, the batch correction path, and the training set all need to tell the same story. When they do not, you get models trained on one version of the world and deployed against another.

For the mechanics, read Zipline's posts on batch computation [https://go.mlops.community/Zipline_Batch] and approaches to streaming features [https://go.mlops.community/Zipline_Streaming].

## Logs Are All You Need: Rethinking Observability with AI Agents

What happens when production breaks and nobody wants to open another dashboard? This discussion argues that AI-native observability could replace manual telemetry hunting with agents that read logs, inspect code, and suggest what failed.

 * Logs over three pillars: Reconstructing metrics and traces from logs could simplify instrumentation.

 * Agents as investigators: Sandboxes, Git-backed memory, and repo access help agents connect errors to code changes.

 * Evals get messier: CLI tools, side effects, and external systems make agent testing harder than simple tool-call checks.

The sharp idea is that observability may become less about watching systems and more about interrogating them.

[https://podcasts.apple.com/gb/podcast/logs-are-all-you-need-rethinking-observability-with-ai/id1505372978?i=1000770754040](https://podcasts.apple.com/gb/podcast/logs-are-all-you-need-rethinking-observability-with-ai/id1505372978?i=1000770754040)

[https://home.mlops.community/home/videos/logs-are-all-you-need-rethinking-observability-with-ai-agents](https://home.mlops.community/home/videos/logs-are-all-you-need-rethinking-observability-with-ai-agents)

[https://open.spotify.com/episode/5PaEfEB0iBIPmlXQhVgI2s?si=02b8108332fc4241](https://open.spotify.com/episode/5PaEfEB0iBIPmlXQhVgI2s?si=02b8108332fc4241)

## The Control-vs-Magic Spectrum Building Agents

A restaurant owner sends a WhatsApp message to pay staff, check cash flow, or handle an invoice. Behind that simple chat is an agent deciding when to act, when to ask for confirmation, and how much control the user needs.

 * Fintech agents need guardrails: Payments and credit require explicit approvals, authentication, and careful task boundaries.

 * Personalization comes from context: Order history, opening hours, cuisine, and account data shape each interaction.

 * Agent architecture grows from evals: Start simple, then split workflows when real usage shows failure points.

The useful lesson is that practical agents are less about magic and more about knowing exactly where not to use it.

[https://podcasts.apple.com/gb/podcast/the-control-vs-magic-spectrum-building-agents/id1505372978?i=1000771333785](https://podcasts.apple.com/gb/podcast/the-control-vs-magic-spectrum-building-agents/id1505372978?i=1000771333785)

[https://home.mlops.community/home/videos/the-control-vs-magic-spectrum-building-agents](https://home.mlops.community/home/videos/the-control-vs-magic-spectrum-building-agents)

[https://open.spotify.com/episode/59lioi7TlEHnvA5BRaiLlW?si=14bfd030c4da4d8b](https://open.spotify.com/episode/59lioi7TlEHnvA5BRaiLlW?si=14bfd030c4da4d8b)

## Human Memory As The Perfect Template For AI Memory

An agent that remembers everything is not useful if it remembers the wrong things at the wrong time. This blog argues that AI memory needs to work more like human memory, using context, relevance, and constraints rather than treating retrieval as storage with better search.

 * Memory needs structure: Agents must handle multimodal inputs, semantic links, and partial recall.

 * Context changes the answer: Work, personal, team, and customer memories need different boundaries.

 * Constraints matter: Time, behavior, privacy, and changing preferences should shape decisions.

The core idea is that useful AI memory is less about storing more and more about knowing what matters now.

[Read the blog](https://mlops.community/blog/human-memory-as-the-perfect-template-for-ai-memory)

## From Agent Demos to Production Reality

Why do agents that work in a demo break in production? Patrick Kelly walked through Code Mode and the Agent Voyager Project at last week's Coding Agents Lunch & Learn - one for cutting agent token costs, the other for measuring what an agent did across a run. Sahil Kathpal followed with a lightning talk on running agents reliably for 45 to 90 minutes without supervision.

Read the short PDF write up here [https://learn.mlops.community/wp-content/uploads/2026/06/Lunch_and_Learn_Session_14_Asset.pdf]. 

The next Coding Agents Lunch & Learn is tomorrow, June 12, at 5:00 PM BST / 4:00 PM UTC. Session 15 covers memory, context, and state management for long-running agents, with a live walkthrough of an open-source framework from the Agentic AI Foundation ecosystem.

Join the next session here [https://home.mlops.community/home/events/coding-agents-lunch-and-learn-session-15-building-stateful-agents-with-open-source-frameworks-3dtn0a82um?agenda_day=6a281c6e45021890b2cd9b3a&agenda_track=6a281c6e45021890b2cd9b51&agenda_stage=6a281c6e45021890b2cd9b40&agenda_filter_view=stage&agenda_view=list].

## IN PERSON EVENTS

* Amsterdam [https://luma.com/6i8pf89q] - June 24

 * NYC [https://luma.com/nyc-i97h] - June 24

## VIRTUAL EVENTS

* Reading Group: Securing the Agent: Vendor-Neutral, Multitenant Enterprise Retrieval and Tool Use [https://home.mlops.community/home/events/securing-the-agent-vendor-neutral-multitenant-enterprise-retrieval-and-tool-use-97o6pxu17x?agenda_day=6a0ada3a99953505591c10a2&agenda_track=6a0ada3b99953505591c10d7&agenda_stage=6a0ada3a99953505591c10a6&agenda_filter_view=stage&agenda_view=list] - June 11

 * Coding Agents Lunch & Learn Session [https://home.mlops.community/home/events/coding-agents-lunch-and-learn-session-15-building-stateful-agents-with-open-source-frameworks-3dtn0a82um?agenda_day=6a281c6e45021890b2cd9b3a&agenda_track=6a281c6e45021890b2cd9b51&agenda_stage=6a281c6e45021890b2cd9b40&agenda_filter_view=stage&agenda_view=list] - June 12

---
Source: https://aaif.live/newsletters/mlopscommunity/2026-06-11-when-logs-talk-back
