Skip to main content
πŸŽ“ Claude Code Masterclass Learn AI-assisted development on Udemy β€” plus the companion book on Leanpub & Amazon. Start Learning
Luca Berton at the AgentOps in Production lab at Red Hat Summit 2026
AI

AgentOps in Production: Hands-On Lab at Red Hat Summit 2026

Inside the AgentOps hands-on lab at Red Hat Summit 2026 β€” agentic end-to-end observability with Red Hat AI, featuring Roberto Carratala, Taylor Smith, and.

LB
Luca Berton
Β· 7 min read

AgentOps in Production: Agentic End-to-End Observability

Luca Berton at the AgentOps in Production hands-on lab β€” rows of laptops ready for attendees

At Red Hat Summit 2026 in Atlanta, I attended the β€œAgentOps in Production” hands-on lab β€” one of the most anticipated sessions focused on agentic end-to-end observability with Red Hat AI.

AgentOps in Production title slide β€” Roberto Carratala, Taylor Smith, Tony Kay

The lab was led by three Red Hat experts:

  • Roberto Carratala β€” Principal AI Architect, Red Hat AI Business Unit
  • Taylor Smith β€” Principal Technical Marketing Manager, Red Hat AI Business Unit
  • Tony Kay β€” Consulting Technical Marketing Manager, Portfolio Marketing

What AgentOps Covers

Red Hat AI Platform Architecture

Red Hat AI platform β€” Inference, Data, Agents, and Platform layers

The session started with the Red Hat AI platform overview β€” four pillars:

  • Inference: Fast, flexible, and efficient inferencing (powered by llm-d)
  • Data: Simplified experience for connecting data to models and agents
  • Agents: Scale Agentic AI with governance and control
  • Platform: Governance and security from metal to agents β€” run any model or agent across any hardware in any cloud environment

The Agentic AI Explosion

Agentic AI is no longer experimental β€” 80% Fortune 500 adoption, $632B AI spending by 2028, 82% executive intent

The numbers driving the urgency behind AgentOps:

  • 80% Fortune 500 adoption β€” of Fortune 500 companies already use active AI agents (Microsoft Cyber Pulse, 2026)
  • $632B AI spending by 2028 β€” worldwide spending on AI solutions will surpass $632 billion, growing at 29% CAGR (IDC, 2025)
  • 82% Executive intent β€” tech executives plan to integrate AI agents within 1-3 years, but under 10% have production-grade deployments (Capgemini, 2025)

The gap between intent (82%) and production deployment (under 10%) is exactly where AgentOps lives. Enterprises want agents but cannot deploy them safely without observability, governance, and security tooling.

AgentOps is Red Hat’s approach to operationalizing AI agents in production. The lab covered end-to-end observability for agentic workloads:

  • Tracing agent reasoning chains β€” following the full decision path from user prompt to final output
  • Monitoring guardrail effectiveness β€” tracking block rates, false positives, and detector performance
  • Auditing agent actions β€” every tool call, API request, and data access logged and traceable
  • Performance metrics β€” latency per agent step, token usage, cost tracking across model providers

Hands-On: The Fed Aura Capital Mortgage AI Demo

The lab used a fictional β€œFed Aura Capital” mortgage processing application β€” a multi-agent AI system running on OpenShift AI with 5 LangGraph agents, RAG-based compliance checking, and model routing.

The Mortgage AI Application

Fed Aura Capital mortgage affordability calculator β€” the demo app

The front-end was a polished mortgage affordability calculator. Behind it: 5 specialized AI agents with role-scoped tools, RBAC enforcement, a compliance knowledge base using pgvector with tiered boosting (federal regulations, agency guidelines, internal policies), complexity-based model routing between fast and capable LLM tiers, hash-chained audit trails with MLflow trace correlation, PII masking middleware, and input/output safety shields.

Agentic Metrics: The 6 That Matter

Agentic metrics β€” traditional plus 4 new agentic-specific Prometheus metrics

The lab defined 6 critical metrics for agentic observability, all exposed via Prometheus:

MetricPrometheus NamePurpose
Request Rate and Errorshttp_requests_totalTraffic volume and failure rate
Latency Percentileshttp_request_duration_secondsResponse speed and outliers
LLM Token Usagellm_tokens_totalToken burn and cost per conversation
LLM Inference Latencyllm_inference_duration_secondsModel bottleneck detection
Tool Call Success Ratetool_calls_totalWhich agent tools are failing?
Agent Routingagent_routing_totalFast vs capable model routing decisions

OpenShift User Workload Monitoring (built-in Prometheus) scrapes these every 30 seconds automatically β€” no Prometheus setup needed.

Executive Dashboard and Agent Tracing

Fed Aura Capital executive dashboard with pipeline overview and denial analysis

The executive dashboard showed real-time mortgage pipeline operations: 38 active applications, 43.2% pull-through rate, 38.7% overall denial rate. Top denial reasons: High DTI ratio (33.3%), credit score below minimum (26.7%), insufficient income documentation (20.0%). Loan officer performance tracked per agent with individual denial rates.

Grafana Observability

Grafana dashboard β€” Mortgage-AI Backend Metrics with request rate, latency, HTTP status

The Grafana dashboard showed 1.20K total requests, 0.33 req/s, 0.00% error rate, 95ms P95 latency. Request rate by endpoint, HTTP status distribution (all 2xx/3xx), and response time percentiles per endpoint β€” all scraped from the same Prometheus metrics.

OpenShift Terminal: Live Cluster

OpenShift terminal showing running pods β€” mortgage-ai-api, Grafana, MariaDB, MinIO, pipeline components

The terminal showed the full stack: ds-pipeline components (metadata, persistence, workflow-controller), Grafana deployment, MariaDB, MinIO for object storage, and the mortgage-ai-api pod β€” all running in the wksp-user1 namespace. Health check confirmed API running v0.1.0 with healthy PostgreSQL connection.

MLflow Trace Analysis: CEO Agent Deep Dive

MLflow Console showing full trace breakdown of CEO agent query with LangGraph spans

The most revealing exercise: tracing a CEO query β€œShow me the current pipeline status” end-to-end in MLflow 3.12.0. The trace breakdown showed every span in the LangGraph execution:

  • input_shield β†’ after_input_shield (guardrails check)
  • agent β†’ ChatOpenAI β†’ should_continue (decision point)
  • tool_auth β†’ after_tool_auth (authorization check)
  • tools β†’ individual tool calls: ceo_pipeline_summary, ceo_denial_trends, ceo_lo_performance, ceo_application_lookup, ceo_audit_trail, ceo_decision_trace, ceo_audit_search, ceo_model_latency, ceo_model_token_usage, ceo_model_errors, ceo_model_routing, product_info
  • Final agent β†’ ChatOpenAI β†’ should_continue β†’ output_shield

The trace revealed 2.89s total latency, model gpt-oss-r20b, and the complete Graph view showing agent-to-agent handoffs. This is what traditional HTTP monitoring completely misses β€” a single 200 OK response hid 12+ tool calls, multiple LLM invocations, and authorization checks.

From LLM Workflows to Autonomous Agents

The session contextualized AgentOps within the broader evolution of enterprise AI. As agents gain more autonomy β€” from simple LLM workflows to agentic workflows to fully autonomous agents β€” observability becomes non-negotiable. You cannot trust what you cannot observe.

The hands-on exercises walked through setting up observability pipelines for OpenShift AI agents, configuring alerting on anomalous agent behavior, and building dashboards that give platform teams visibility into what their AI agents are actually doing in production.

Key Takeaways

Streamline Agent Operationalization

Streamline Agent Operationalization β€” Security, Safety, and Observability pillars

The lab broke AgentOps into three pillars:

Security β€” Agent Identity and Security (Govern what agents can access):

  • Cryptographic Identity: Short-lived, keyless SPIFFE/SPIRE
  • Infrastructure Defense: MCP Gateway blocking
  • Scoped Access: Managed OAuth2 tokens

Safety β€” Agent Sandbox (Isolate and contain agent execution):

  • Zero-Trust Sandboxing: Kernel-isolated microVMs
  • Egress Control: Unauthorized data prevention
  • Scalable Inference: High-throughput vLLM scaling
  • Binary Isolation: OpenShell network/syscall filtering

Observability β€” AgentOps (Monitor, trace, and manage the lifecycle):

  • MLflow tracing: Logs every LLM call, tool execution, and decision step (GA)
  • Agent Lifecycle: Kagenti discovery/scaling
  • Live Scoring: EvalHub continuous evaluation

Three Critical Gaps: Pilot to Production

Three critical gaps from pilot to production β€” agent identity, ungoverned autonomy, scalability

The session identified three gaps preventing enterprises from moving AI agents from pilot to production:

  1. Agent Identity β€” Agents need secure, cryptographic identities to access sensitive tools under least-privilege principles. Hardcoded keys are unacceptable in production.

  2. Ungoverned Autonomy β€” Unconstrained dynamic code execution creates security risks, requiring isolated environments with deep execution tracing to monitor autonomous actions.

  3. Scalability and Performance β€” Multi-agent architectures generate unpredictable, concurrent inference spikes that traditional infrastructure cannot handle.

These three gaps map directly to the Security, Safety, and Observability pillars above β€” Red Hat’s AgentOps is designed to close all three simultaneously.

AgentOps with Red Hat AI: The Full Picture

AgentOps with Red Hat AI β€” bridging experimental AI to production agents

The comprehensive AgentOps slide tied everything together β€” β€œBridge the gap between experimental AI to Agents in production.” The framework spans the full lifecycle: Tracing β†’ Evaluation β†’ Identity β†’ Safety/Security β†’ Observability β†’ Catalog β†’ Registry β†’ Lifecycle Management.

Three operational domains:

Observe, Trace, Evaluate:

  • MLFlow 3.10+ β€” log traces and visualize them including tool calls (3.4)
  • OpenTelemetry compatibility
  • Datasets curation + Scoring with Eval-hub and MLFlow

Enforce Identity/Access Control:

  • OAuth2 / Token Exchange for secure delegation
  • SPIFFE/SPIRE for trusted workload (agent) identity
  • Kagenti/AuthBridge for agentic Auth and access control
  • Agent to tools governance (MCP Gateway)

Develop and Deploy Reliably:

  • Cloud-native principles repurposed for agentic workloads
  • Declarative Agent Lifecycle management via Kagenti (runtime, identity, trace config)
  • Agent safety, guardrails, and red teaming (Nemo, Garak)

Summary

  1. Observability is the foundation of trust β€” enterprises will not deploy autonomous agents without full visibility
  2. Existing observability tools are not enough β€” agent reasoning chains require new tracing primitives beyond traditional request/response
  3. Red Hat AI integrates with OpenTelemetry β€” agent traces flow into the same observability stack as your microservices
  4. Guardrail metrics matter β€” tracking what gets blocked is as important as tracking what gets through

This lab complemented the keynote announcements perfectly β€” the keynote showed the vision, the lab showed how to implement it.

Also at the Summit: HYVE Managed Hosting

Luca Berton with the HYVE Managed Hosting team at Red Hat Summit 2026

Between sessions, I stopped by the HYVE Managed Hosting booth. HYVE offers Red Hat OpenShift managed services across private cloud, public cloud, security, containers, AI workloads, and migrations β€” with a 4.9 Excellent Trustpilot rating. They also partner with VMware, AWS, and CrowdStrike.

Great conversations about how managed hosting providers are adapting their offerings for AI workloads and the growing demand for OpenShift migrations.


Red Hat Summit 2026 continues in Atlanta. Follow my keynote recap and book giveaway posts for more coverage.

Free 30-min AI & Cloud consultation

Book Now