DEV Community

Cover image for The old SRE is dead.
Adreet Gogoi
Adreet Gogoi

Posted on

The old SRE is dead.

If you’re in SRE, DevOps, Platform, or Cloud Engineering and still thinking in the old loop of

Monitor → Alert → Investigate → Fix,

you’re already behind the systems you’re supposed to keep reliable.

The traditional model assumed systems were mostly deterministic.

Something broke → you got an alert → you found the root cause → you fixed it.

That world is disappearing.

Here’s the new operating model that is quietly taking over:

Observe → Understand → Predict → Decide → Automate → Verify

This isn’t just a nicer flowchart. It’s a fundamental shift in how reliability is achieved.

1. AI workloads broke the old assumptions

LLMs, agents, and inference pipelines are not “experiments” anymore. They are production systems with non-deterministic behavior.

Traditional monitoring still works for CPU, memory, and latency.

It completely fails when the failure mode is:

  • The model started hallucinating more after a quiet dependency update
  • Token cost exploded because of a prompt change no one noticed
  • Output quality drifted even though every service is “green”
  • An agent started looping or making irrational decisions

You can no longer treat model accuracy, hallucination rate, output consistency, and cost-per-request as second-class metrics. They are now first-class reliability signals — the same way availability and error rate used to be.

2. Observability is no longer just visibility. It’s becoming the control plane

Classic monitoring answers: “CPU is at 90%.”

Modern observability must answer:

“Why did this start happening 17 minutes ago?

Which service or model version is involved?

Did a deployment, data drift, or external API change cause it?

What is the business impact right now?”

The future stack is not just Logs + Metrics + Traces.

It is:

Logs + Metrics + Traces + Topology + AI signals + Business context → one intelligence layer

When observability can reason across all of these, it stops being a passive dashboard and starts becoming the system that decides when and how to act.

3. SLOs must expand or they become irrelevant

A 99.95% availability SLO still matters.

But for AI systems it is no longer sufficient.

You now need multi-dimensional SLOs that include:

  • Accuracy / quality
  • Latency (including inference latency)
  • Reliability of the decision itself
  • Cost efficiency
  • Output consistency over time

Because AI systems can change their behavior after deployment without any code change, continuous verification becomes mandatory. You don’t just ship and monitor. You continuously test whether the system is still behaving the way it was supposed to.


The old SRE mindset optimized for keeping things up.

The new SRE mindset optimizes for keeping things correct, predictable, and economically sane in a world where the systems themselves are learning and changing.

This is not optional knowledge for people who want to stay relevant in reliability engineering.

This is the new baseline.

If you’re still only watching infrastructure metrics, you’re watching the wrong dashboard.

Top comments (0)