Tag Archives: ai

AI Observability

AI is not killing observability as a discipline, but it is fundamentally changing how observability is done. The traditional model of “collect everything, store everything, and let humans investigate later” is becoming increasingly impractical in AI-driven infrastructures.

1. Telemetry volume is exploding

Modern systems produce far more telemetry than they did five years ago.

An AI factory may contain:

  • Tens of thousands of GPUs
  • Hundreds of thousands of CPU cores
  • High-speed fabrics (RoCE, InfiniBand)
  • Kubernetes
  • Distributed storage (Ceph, Lustre, GPFS)
  • AI inference services
  • LLM gateways

Each component exports metrics, logs, traces and events.

For example:

2020

100 servers

100 million metrics/day

2026

20,000 GPUs
30,000 CPUs
5,000 switches



Several trillion data points/day

Humans cannot meaningfully explore that volume.


2. Dashboards don’t scale

Traditional observability assumes people sit looking at Grafana dashboards.

Reality:

  • nobody watches 400 dashboards
  • nobody remembers 2,000 PromQL queries
  • nobody notices slow drift

Instead people increasingly ask:

“Why did training become slower?”

AI investigates.

Not humans.


3. Alert fatigue becomes impossible

Large organisations often generate

  • 50,000 alerts/day
  • 100,000 log anomalies/day

Historically:

Prometheus
↓
Alertmanager
↓
PagerDuty
↓
Human

Future:

Prometheus
↓
AI correlation
↓
Root cause
↓
Human receives one explanation

Instead of:

127 alerts

Engineer receives

GPU node gpu-128 experienced ECC errors causing NCCL retries which slowed training by 18%.


4. Humans don’t query telemetry anymore

Traditional workflow

Grafana
↓
Zoom
↓
PromQL
↓
Logs
↓
Tempo
↓
Find issue

Future

"Why are customer requests slower?"
↓
AI
↓
queries everything
↓
returns explanation

Natural language replaces much of manual exploration.


5. AI is becoming the first investigator

Large enterprises increasingly build systems like:

Telemetry
↓
LLM
↓
Reasoning
↓
Correlation
↓
Recommendation

Instead of asking engineers to join the dots.


6. Sampling changes everything

Historically:

Store every log.

Now:

AI decides

Keep
Discard
Summarise
Compress

Observability becomes intelligent instead of passive.


7. Root cause becomes graph reasoning

Today’s tools often correlate:

metric
+
trace
+
log

Future systems correlate:

  • topology
  • Kubernetes
  • network
  • storage
  • deployments
  • Git commits
  • feature flags
  • incidents
  • Slack discussions
  • runbooks

into one knowledge graph.

AI reasons across all of it.


8. AI reduces the need for experts

Today an SRE may spend years learning:

  • PromQL
  • LogQL
  • TraceQL
  • Elasticsearch
  • Loki
  • Tempo
  • Mimir
  • Kubernetes
  • networking

Future engineers may simply ask:

Why did latency increase?

The AI handles the underlying queries.

Expertise shifts from query syntax to validating conclusions and understanding system design.


9. Observability vendors are changing

Every major platform is investing heavily in AI assistants.

Examples include:

  • Grafana Labs
  • Datadog
  • Dynatrace
  • New Relic
  • Elastic
  • Splunk

They’re moving from:

  • dashboards

to:

  • AI copilots
  • automatic investigations
  • causal analysis
  • anomaly explanations
  • remediation suggestions

10. Cost is becoming the biggest problem

Storage costs are growing faster than engineering budgets.

For many enterprises:

Telemetry generated

100 TB/day

Engineers never inspect 99% of it.

AI can:

  • summarize repetitive logs
  • identify low-value telemetry
  • adapt sampling dynamically
  • retain only diagnostically useful data

This can significantly reduce storage and processing costs while preserving investigative value.


What is actually dying?

It is not observability itself, but the manual workflows around it.

Declining:

  • Manual dashboard creation
  • Hand-written alert rules for every scenario
  • Endless log searching
  • Human correlation across tools
  • Memorizing complex query languages

Growing:

  • AI-assisted investigations
  • Automated root-cause analysis
  • Predictive anomaly detection
  • Natural-language querying
  • Knowledge-graph reasoning
  • Automated remediation

What this means for SREs

For someone with your background in observability platforms, this shift is an opportunity rather than a threat. The value moves away from being the person who can write the most intricate PromQL query and toward designing the telemetry architecture, ensuring data quality, integrating AI agents with monitoring systems, and deciding when AI-generated conclusions can be trusted.

The emerging role is less “dashboard builder” and more Observability Platform Engineer or AI Operations (AIOps) Engineer—someone who builds systems that enable AI to investigate production issues safely and accurately. That combination of platform engineering, distributed systems, and AI integration is likely to be in increasing demand over the next decade.

What is AI Observability?

AI-era observability is moving from human-driven inspection to machine-assisted reasoning over telemetry, topology, history and operational knowledge.

The key shift is this:

Old observability:

Metrics + logs + traces

Dashboards and alerts

Human investigates

Human decides

Human fixes


AI-era observability:

Metrics + logs + traces + topology + deployments + runbooks + incidents

AI correlation and reasoning layer

Probable cause, blast radius, next action

Human approval or automated remediation

Below is a detailed breakdown of the six areas.


1. AI-assisted investigations

What it means

AI-assisted investigation is where an AI system acts like a junior SRE investigator sitting beside you.

It does not necessarily fix the issue automatically. Its main job is to reduce the time spent asking basic investigative questions.

Instead of you manually jumping between:

Grafana → Prometheus/Mimir → Loki → Tempo → Kubernetes → Git → Slack → Runbooks

you ask something like:

Why did checkout latency increase after 14:05?

The AI then queries multiple systems and returns a structured investigation.


What it does

A good AI investigation assistant can:

  • Detect the relevant service, namespace, cluster or tenant.
  • Pull related metrics.
  • Search logs around the incident window.
  • Inspect traces for slow spans.
  • Compare current behaviour against baseline behaviour.
  • Check recent deployments.
  • Check Kubernetes events.
  • Check node, pod, container and network health.
  • Retrieve relevant runbooks.
  • Summarise likely causes.
  • Recommend next diagnostic steps.

Example

You ask:

Why is the inference API slower?

The AI investigates:

1. Latency increased at 10:17.
2. p95 rose from 420 ms to 1.8 s.
3. Error rate did not increase.
4. GPU utilisation remained high.
5. Queue depth increased.
6. New model version was deployed at 10:12.
7. Logs show repeated batching timeout warnings.
8. Traces show delay before GPU execution, not during execution.

Result:

Likely issue:
The model service is queueing requests before GPU execution.

Probable cause:
The new batching configuration increased max_batch_wait_ms from 20 ms to 250 ms.

Recommended action:
Rollback batching config or reduce batch wait threshold.

That is much faster than manually checking ten dashboards.


What data it needs

AI-assisted investigation works best when it has access to:

Metrics:
- RED metrics: rate, errors, duration
- USE metrics: utilisation, saturation, errors
- Kubernetes pod/node metrics
- GPU metrics
- Network metrics
- Storage metrics

Logs:
- Application logs
- Kubernetes events
- System logs
- Ingress/controller logs
- Deployment logs

Traces:
- Request path
- Slow spans
- Upstream/downstream dependencies
- Database/storage/API calls

Context:
- Deployment history
- Git commits
- Feature flags
- Config changes
- Runbooks
- Incident history
- Service ownership

Without context, AI just summarises telemetry. With context, it can investigate.


SRE value

For SREs, this means less time doing mechanical investigation and more time validating the diagnosis.

The future SRE skill is not just:

Can I write PromQL?

It becomes:

Can I design telemetry so AI can reason correctly?
Can I validate the AI's conclusion?
Can I prevent unsafe remediation?
Can I encode good operational knowledge into the platform?

2. Automated root-cause analysis

What it means

Automated root-cause analysis, or automated RCA, is the process of identifying the most likely initiating cause of a production issue without relying entirely on manual human correlation.

It tries to answer:

What actually started the incident?

Not merely:

What symptoms are currently visible?

This distinction matters.


Symptom versus root cause

Example incident:

Customer latency is high.
API pods are slow.
Database queries are slow.
Storage latency is high.
Ceph OSDs are rebalancing.
One storage node has a failing disk.

The symptoms are:

High API latency
Slow database responses
Increased request duration
More timeout warnings

The probable root cause is:

A failing disk caused Ceph recovery/rebalancing,
which increased storage latency,
which slowed the database,
which slowed the API.

Automated RCA attempts to build that causal chain.


How automated RCA works

There are several techniques.

1. Temporal correlation

The system checks what changed first.

10:01 disk errors begin
10:03 Ceph recovery starts
10:05 storage latency rises
10:07 database latency rises
10:09 API latency rises
10:10 customer alerts fire

The earliest credible abnormal event is often close to the root cause.


2. Topology-aware analysis

The system understands dependencies.

frontend

checkout-api

postgres

ceph/rbd

osd-node-07

If osd-node-07 is unhealthy, and all dependent systems are degraded, the RCA engine can infer blast radius.


3. Change correlation

The system checks recent changes:

Deployments
Config changes
Feature flags
Kernel updates
Node drains
Network changes
Storage migrations
Certificate rotations
DNS changes
Autoscaling events

Many incidents are change-induced. A useful RCA system always asks:

What changed recently?

4. Statistical anomaly ranking

The system ranks abnormal signals.

For example:

Signal                         Abnormality score
GPU ECC errors 0.98
NCCL retry count 0.94
Training step duration 0.91
CPU usage 0.22
Memory usage 0.18

The AI focuses on the strongest abnormal signals.


5. Causal graph reasoning

This is more advanced.

Instead of treating metrics as isolated time series, the system builds a causal model:

Bad disk
→ Ceph recovery
→ Storage latency
→ Database latency
→ API latency
→ Customer impact

This is much closer to how an experienced SRE thinks.


Example automated RCA output

Incident:
Checkout latency p95 increased from 300 ms to 2.4 s.

Likely root cause:
PostgreSQL read latency increased due to degraded Ceph RBD volume performance.

Evidence:
- API latency increased at 13:42.
- PostgreSQL read latency increased at 13:39.
- Ceph pool latency increased at 13:36.
- OSD 12 reported slow ops and disk errors at 13:34.
- No relevant application deployment occurred in the previous hour.

Blast radius:
- checkout-api
- payment-api
- order-history-api

Recommended action:
- Mark OSD 12 out if disk errors continue.
- Move affected workload if possible.
- Check Ceph recovery/backfill limits.
- Consider temporarily scaling API timeout thresholds.

What makes automated RCA hard

Automated RCA is difficult because distributed systems are messy.

Common problems:

Correlation is not causation.
Multiple things can break at once.
Telemetry may be missing.
Logs may be noisy.
Clocks may not be perfectly synchronised.
Service dependency maps may be stale.
The root cause may be outside the monitored system.

This is why good automated RCA usually gives:

Probable cause
Confidence level
Supporting evidence
Contradicting evidence
Recommended next checks

It should not pretend to be certain when it is not.


3. Predictive anomaly detection

What it means

Predictive anomaly detection tries to detect abnormal behaviour before it becomes a major incident.

Traditional alerting says:

Alert when disk usage > 90%.

Predictive alerting says:

Disk usage is growing at a rate that will hit 90% in 11 hours.

That is a major shift.


Traditional threshold alerting

Example:

Alert: DiskAlmostFull
Condition: disk_used_percent > 90

This is simple and useful, but it misses context.

A disk at 85% may be fine if it grows slowly.

A disk at 60% may be dangerous if it is growing rapidly.


Predictive anomaly detection

Predictive systems look at behaviour over time:

Normal pattern:
- CPU rises during business hours
- drops overnight
- spikes during batch processing

Abnormal pattern:
- CPU rises at midnight
- no scheduled job exists
- memory grows continuously
- request rate is normal

The system detects that the pattern is unusual, even if no hard threshold has been crossed.


Types of predictive anomalies

1. Trend-based prediction

Useful for capacity planning.

Disk usage will reach 90% in 3 days.
Mimir object storage will exceed budget in 12 days.
Kafka partition disk will fill in 9 hours.
Ceph pool will hit near-full ratio this weekend.

2. Seasonality-aware anomaly detection

Useful for normal daily/weekly cycles.

Example:

CPU at 80% at 10:00 Monday may be normal.
CPU at 80% at 03:00 Sunday may be abnormal.

The system learns expected patterns.


3. Multivariate anomaly detection

Looks at several signals together.

For example:

Request rate: normal
Error rate: normal
Latency: high
CPU: normal
Database latency: high
Network retransmits: high

Individually, some metrics may not trigger alerts. Together, they reveal an abnormal condition.


4. Behavioural drift detection

Useful in AI and ML platforms.

Example:

Training jobs are completing successfully,
but average step time has increased by 12% over two weeks.

No incident has occurred yet, but performance is drifting.


5. Saturation prediction

Very useful for SRE.

GPU memory saturation likely within 40 minutes.
Kubernetes node memory pressure likely in 2 hours.
Ceph recovery will saturate backend network.
Kafka consumer lag will exceed SLO in 25 minutes.

Example

A predictive anomaly detector observes:

Mimir ingest rate: stable
Object storage write latency: slowly increasing
Compactor duration: increasing
Query latency: increasing
Store-gateway cache hit rate: decreasing

It predicts:

Within 6 hours, users will experience slow dashboard loads.

The remediation might be:

Scale store-gateways.
Check object storage latency.
Increase cache.
Review compactor backlog.

Why it matters

Predictive anomaly detection changes operations from:

React after customer impact

to:

Intervene before customer impact

That is the core SRE value.


4. Natural-language querying

What it means

Natural-language querying allows engineers to ask operational questions in plain English instead of writing PromQL, LogQL, TraceQL, SQL or Elasticsearch queries manually.

Example:

Show me p95 latency for checkout-api over the last 6 hours,
split by Kubernetes namespace.

The AI converts that into the right query.


Traditional workflow

You need to know the query language:

histogram_quantile(
0.95,
sum by (le, namespace) (
rate(http_request_duration_seconds_bucket{
service="checkout-api"
}[5m])
)
)

With natural-language querying:

What is checkout-api p95 latency by namespace for the last 6 hours?

The AI generates and executes the query.


Where this is useful

Natural-language querying is useful across:

Metrics:
- Prometheus
- Mimir
- Thanos
- VictoriaMetrics

Logs:
- Loki
- Elasticsearch/OpenSearch
- ClickHouse

Traces:
- Tempo
- Jaeger
- OpenTelemetry backends

Databases:
- PostgreSQL
- BigQuery
- Snowflake
- ClickHouse

Cloud APIs:
- Kubernetes
- AWS
- Azure
- GCP
- OpenStack

Example questions

Which services had the largest increase in error rate in the last hour?

Show me pods that restarted after the latest deployment.

Find logs for payment-api where timeout errors increased.

Which traces spent the most time waiting on PostgreSQL?

Which Kubernetes nodes have high network retransmits?

Show me Ceph OSDs with rising latency and degraded placement groups.

Which GPU nodes show ECC errors or thermal throttling?

The important part: semantic mapping

Natural-language querying is not just text-to-query.

It needs to understand your telemetry naming.

For example, you may ask:

Show API latency.

But your metrics may be called:

http_request_duration_seconds_bucket
nginx_ingress_controller_request_duration_seconds_bucket
istio_request_duration_milliseconds_bucket
app_http_server_duration_bucket

The AI needs a semantic layer that maps human concepts to real telemetry.


Good natural-language querying needs

Metric catalogue
Label documentation
Service ownership map
Namespace conventions
Dashboard metadata
Runbook links
Known-good query examples
SLO definitions
Deployment metadata

Without that, the AI may generate syntactically valid but operationally useless queries.


Risk: hallucinated queries

Natural-language querying can be dangerous if it invents metric names.

Bad output:

rate(checkout_latency_seconds[5m])

But that metric may not exist.

Better behaviour:

I could not find a metric named checkout_latency_seconds.
I found http_request_duration_seconds_bucket with service="checkout-api".
Using that instead.

The AI should verify queries against the actual telemetry backend.


SRE impact

SREs will still need to understand PromQL, LogQL and traces, but less time will be spent manually composing queries.

The valuable skill becomes designing the semantic layer:

Good metric names
Useful labels
Consistent service metadata
Accurate ownership data
Clear runbooks
Well-documented SLOs

5. Knowledge-graph reasoning

What it means

Knowledge-graph reasoning connects operational facts into a graph so AI can reason over relationships.

Traditional observability stores data like this:

Metric:
checkout-api p95 latency = 2.1s

Log:
timeout connecting to postgres

Trace:
checkout-api → postgres took 1.8s

Kubernetes:
postgres pod moved to node-12

Infrastructure:
node-12 has disk pressure

A knowledge graph connects those facts:

checkout-api
depends_on → postgres
runs_in → namespace prod
owned_by → payments-team

postgres
runs_on → node-12
uses → ceph-rbd-volume-44

node-12
has_condition → disk_pressure

ceph-rbd-volume-44
backed_by → ceph-pool-prod

Now the AI can reason across relationships.


Why graphs matter

Most incidents are not isolated.

They involve chains:

Application → runtime → Kubernetes → node → network → storage → hardware

Dashboards show symptoms. Graphs show relationships.


Example graph

Customer impact

checkout-api latency

postgres query latency

RBD volume latency

Ceph OSD slow ops

failing NVMe device

A graph-based system can move up and down this chain.


What goes into the graph

A strong observability knowledge graph includes:

Services
APIs
Databases
Queues
Kubernetes namespaces
Pods
Nodes
Clusters
Storage volumes
Ceph pools
Network devices
Load balancers
Ingress controllers
Deployments
Git commits
Feature flags
SLOs
Alerts
Incidents
Runbooks
Owners
Escalation paths
Cloud resources
OpenStack projects
GPU nodes
Training jobs

How the graph is built

Data sources may include:

Kubernetes API
Prometheus/Mimir labels
OpenTelemetry resource attributes
Service mesh telemetry
CMDB
Terraform state
GitOps repositories
CI/CD systems
Incident management tools
Cloud APIs
OpenStack APIs
Ceph APIs
Network controllers
Runbooks and docs

The graph is continuously updated.


Example reasoning

Question:

Why are training jobs slower on rack 3?

The graph helps the AI discover:

Training-job-982
runs_on → gpu-node-31, gpu-node-32, gpu-node-33
located_in → rack-3
uses_network → leaf-switch-3a
uses_storage → lustre-client
depends_on → metadata-server-2

Telemetry shows:

leaf-switch-3a has rising packet drops
NCCL retries increased
GPU utilisation has sawtooth pattern
training step time increased

AI conclusion:

The training slowdown is likely caused by network instability on rack 3,
not by GPU compute saturation.

That is knowledge-graph reasoning.


Why this matters for AI data centres

AI/HPC environments are dependency-heavy.

A single training workload may depend on:

GPU health
GPU memory
NVLink/NVSwitch
PCIe
RoCE/InfiniBand
Leaf-spine network
Storage bandwidth
Metadata servers
Container runtime
Kubernetes scheduler
Slurm scheduler
Image registry
Secrets
DNS
Authentication
Object storage

A flat dashboard cannot represent that well. A graph can.


6. Automated remediation

What it means

Automated remediation is when the system not only detects and diagnoses an issue, but also takes corrective action.

This is the most powerful and most dangerous part of AI-era observability.

It moves from:

Observe → Alert → Human fixes

to:

Observe → Diagnose → Decide → Act → Verify

Simple automated remediation

Low-risk examples:

Restart a failed pod.
Scale a deployment from 3 to 5 replicas.
Clear a stuck job.
Rotate a saturated log file.
Drain a bad Kubernetes node.
Open an incident ticket.
Create a Slack/PagerDuty summary.
Rollback a known-bad deployment.
Increase queue consumers.

Advanced automated remediation

Higher-risk examples:

Move workloads away from degraded storage.
Change Ceph recovery/backfill settings.
Disable a feature flag.
Rebalance Kafka partitions.
Quarantine a GPU node.
Remove a bad node from a load balancer.
Apply a network policy change.
Trigger disaster recovery failover.
Patch a vulnerable service.

These require stronger guardrails.


The remediation loop

A safe remediation system should work like this:

1. Detect
Something abnormal happened.

2. Diagnose
Determine probable cause and confidence.

3. Propose
Generate a remediation plan.

4. Check policy
Is this action allowed?
Is the blast radius acceptable?
Is approval required?

5. Act
Execute the change.

6. Verify
Did the metric improve?
Did errors reduce?
Did customer impact stop?

7. Roll back
If not improved, revert or escalate.

8. Learn
Record the incident and outcome.

Example

Issue:

checkout-api error rate increased after deployment.

AI investigation:

New version deployed at 09:03.
Errors began at 09:05.
Only pods running version v2.7.4 are affected.
Previous version v2.7.3 had no errors.

Remediation proposal:

Rollback checkout-api from v2.7.4 to v2.7.3.

Policy check:

Allowed because:
- service has rollback automation
- error rate exceeds SLO threshold
- last known-good version exists
- no database migration detected

Action:

kubectl rollout undo deployment/checkout-api

Verification:

Error rate returned to baseline after 4 minutes.
p95 latency returned to normal.
Incident summary created.

Guardrails are essential

Automated remediation must not be a reckless agent with production write access.

Good guardrails include:

Read-only by default
Approval required for high-risk actions
Change windows
Blast-radius limits
Dry-run mode
Policy-as-code
RBAC
Audit logs
Rollback plans
Rate limits
Canary execution
Human confirmation for destructive actions

For example:

Allowed automatically:
- restart one unhealthy pod
- scale a stateless service within limits
- create an incident ticket

Requires approval:
- drain production node
- rollback payment service
- modify firewall/network policy
- change Ceph recovery settings
- fail over database

How these six areas fit together

They are not separate ideas. They form a pipeline.

Natural-language querying

Lets humans ask better questions

AI-assisted investigations

Gathers evidence automatically

Knowledge-graph reasoning

Understands relationships and dependencies

Automated root-cause analysis

Identifies probable initiating cause

Predictive anomaly detection

Finds issues before they become incidents

Automated remediation

Fixes or mitigates the issue

A mature AI observability platform combines all six.


Practical architecture for an AI observability platform

A realistic architecture could look like this:

Telemetry sources
├─ Prometheus / Mimir metrics
├─ Loki logs
├─ Tempo traces
├─ Kubernetes events
├─ Ceph / storage metrics
├─ GPU metrics
├─ Network telemetry
├─ CI/CD events
├─ Git commits
└─ Incident history



Data normalization layer
├─ OpenTelemetry attributes
├─ Service naming standards
├─ Environment labels
├─ Owner/team labels
└─ SLO metadata



Context layer
├─ Runbooks
├─ Architecture docs
├─ Past incidents
├─ Known failure modes
├─ Deployment history
└─ Dependency maps



AI reasoning layer
├─ LLM
├─ RAG over runbooks/docs
├─ Query generation
├─ Anomaly detection
├─ Causal graph reasoning
└─ RCA ranking



Action layer
├─ Human-readable incident summary
├─ Suggested next steps
├─ Ticket creation
├─ Slack/PagerDuty update
├─ Safe automation
└─ Approved remediation

What you would build first as an SRE

I would not start with fully automated remediation. That is too risky.

The sensible maturity path is:

Stage 1: AI-assisted read-only investigation

Build a tool that can answer:

What changed?
What alerts fired?
What services are affected?
What logs are unusual?
What traces are slow?
What runbook applies?

No write actions.


Stage 2: Natural-language query assistant

Allow engineers to ask:

Show me p95 latency by service.
Find logs for this incident window.
Show me failed pods after the deployment.
Compare today’s error rate with yesterday.

The assistant should show the generated query so the engineer can verify it.


Stage 3: Incident summariser

Generate structured summaries:

Incident:
Impact:
Start time:
Affected services:
Probable cause:
Evidence:
Actions taken:
Current status:
Recommended next steps:

This alone saves huge operational time.


Stage 4: RCA recommendation engine

Add correlation with:

Deployments
Kubernetes events
Node health
Storage health
Network telemetry
Recent config changes

Output probable root cause with confidence.


Stage 5: Predictive alerting

Start with safer predictions:

Disk will fill.
Object storage usage will exceed budget.
Kafka lag will breach SLO.
Ceph pool will hit near-full.
Certificate will expire.
GPU nodes are showing increasing ECC errors.

Stage 6: Human-approved remediation

The AI proposes actions, but humans approve.

Example:

Recommended action:
Drain node gpu-17 and reschedule workloads.

Reason:
GPU ECC errors increased and training retries are affecting jobs.

Approval required:
Yes.

Stage 7: Limited automatic remediation

Only allow automation for narrow, reversible, low-risk actions.

Restart crashed pod
Scale stateless deployment
Reopen failed consumer
Create incident ticket
Disable noisy alert temporarily with expiry

Main risks

AI observability can go wrong if the system has poor telemetry or too much authority.

1. Bad telemetry in, bad reasoning out

If labels are inconsistent, traces are incomplete, or logs are unstructured, AI conclusions will be weak.


2. Hallucinated root cause

The AI may sound confident while being wrong.

Always require:

Evidence
Confidence
Alternative theories
Query links
Raw data references

3. Unsafe remediation

A bad automated action can make an incident worse.

Example:

AI sees high memory.
AI restarts all pods.
All pods restart at once.
Outage gets worse.

That is why blast-radius control matters.


4. Hidden cost explosion

AI investigation can generate expensive backend queries.

A poorly controlled AI assistant may run huge queries across logs, traces and metrics.

You need:

Query limits
Timeouts
Caching
Sampling
Tenant controls
Cost visibility

5. Security and access control

The AI should not see or do everything.

It needs RBAC:

Read-only access for most users
Sensitive log masking
No secret exposure
Audit trail
Approval for write actions
Tenant isolation

The big picture

These six capabilities are the future of observability:

CapabilityMain purposeHuman role
AI-assisted investigationsSpeed up incident analysisValidate findings
Automated RCAIdentify probable causeJudge evidence
Predictive anomaly detectionPrevent incidents earlierTune models and thresholds
Natural-language queryingMake telemetry easier to accessVerify generated queries
Knowledge-graph reasoningUnderstand system relationshipsMaintain accurate topology
Automated remediationFix or mitigate issuesDefine guardrails and approve risk

The core change is this:

Observability is no longer just about collecting telemetry.

It is becoming a reasoning system over telemetry.

For SREs, the opportunity is to become the person who builds and governs that reasoning system: telemetry quality, context, automation safety, incident workflows, and trust boundaries.

Commercial AI Observability

Commercial companies are building AI into observability in two directions:

  1. AI for observability — using AI to investigate, correlate, explain, predict and remediate production issues.
  2. Observability for AI — monitoring LLMs, agents, RAG pipelines, vector databases, model quality, hallucinations, token cost, latency, drift and safety.

So the product shift is not just “add a chatbot to dashboards.” The bigger move is toward an AI operations layer that sits above metrics, logs, traces, events, topology and runbooks.

Telemetry + topology + deployments + logs + traces + incidents + runbooks

AI reasoning layer

Explain issue → find cause → predict risk → recommend/execute action

1. Datadog

Datadog is building AI into its platform around Bits AI, Watchdog, and LLM/Agent Observability.

Datadog’s Watchdog is its AI engine for automated alerts, insights and root-cause analysis across Datadog telemetry. It continuously monitors infrastructure and surfaces important signals to help teams detect, troubleshoot and resolve issues.

Datadog’s Bits AI SRE is positioned as an always-on AI SRE agent that helps handle troubleshooting and alerts, with Datadog describing it as able to pinpoint root causes faster by using Datadog’s incident and telemetry context.

Datadog is also pushing Bits AI Agents and Agent Builder, where the platform can build custom AI agents that investigate issues, make decisions and take action using Datadog and third-party data, with prebuilt actions across cloud, security, CI/CD and collaboration tooling.

For the second direction, Datadog has Agent Observability / LLM Observability, aimed at tracing, evaluating and improving LLM-powered applications and AI agents. Datadog says each LLM application request can be represented as a trace, allowing teams to investigate root cause, operational performance, quality, privacy and safety.

In plain SRE terms, Datadog is building:

Datadog AI direction:

Watchdog
→ automatic anomaly detection
→ automated insights
→ RCA suggestions

Bits AI
→ natural-language investigation
→ AI SRE assistant
→ incident summarisation
→ workflow automation

Bits AI Agents
→ custom agentic workflows
→ investigation agents
→ remediation/documentation agents

LLM / Agent Observability
→ traces for LLM calls
→ prompt/response monitoring
→ quality, privacy, safety checks
→ AI-agent debugging

Datadog is also doing deeper model work: its Toto time-series foundation model is specifically designed for observability time-series forecasting and was trained partly on Datadog observability data.


2. Dynatrace

Dynatrace has probably been the most explicit about putting causal AI at the centre of observability.

Its AI engine is Davis AI / Dynatrace Intelligence. Dynatrace describes its AI approach as combining predictive AI, causal AI and generative AI over unified observability and security data to automate workflows.

Dynatrace’s key differentiator is that it does not want the AI to merely correlate metrics. It wants the platform to understand causality: what caused what, what depends on what, and what failure actually triggered the incident. Dynatrace describes causal AI as using causal and deterministic techniques to determine underlying causes and effects rather than just relying on correlation.

Dynatrace also presents Dynatrace Intelligence as combining deterministic insights with agentic action for prevention, remediation and optimisation at scale.

For AI workloads, Dynatrace has AI and LLM Observability for monitoring, optimising and securing generative AI apps, LLMs and agentic workflows, with emphasis on performance, explainability and compliance.

In SRE terms, Dynatrace is building:

Dynatrace AI direction:

Davis AI / Dynatrace Intelligence
→ anomaly detection
→ causal root-cause analysis
→ topology-aware problem detection
→ predictive risk detection
→ generative explanations
→ workflow automation

Causal AI
→ dependency-aware analysis
→ fault-tree-style reasoning
→ root cause, not just symptom correlation

AI and LLM Observability
→ GenAI app monitoring
→ LLM and agentic workflow visibility
→ explainability
→ compliance-oriented monitoring

The important point: Dynatrace is trying to make observability less like “search through telemetry” and more like automated dependency-aware diagnosis.


3. Splunk

Splunk is building AI into observability through Splunk AI Assistant in Observability Cloud, broader AI Observability, and AI/agent monitoring.

Splunk’s AI Assistant in Observability Cloud uses observability data from metrics, traces, logs and alerts through a chat interface inside Splunk Observability Cloud.

Splunk says the AI Assistant can analyze data across APM, Infrastructure Monitoring, Database Monitoring, RUM and log analytics to help with root-cause analysis.

Splunk is also building “observability for AI” capabilities. Its Splunk Observability for AI is described as full-fidelity monitoring and troubleshooting across AI applications and the AI infrastructure components used to build them.

Splunk’s AI Agent Monitoring aims to correlate degraded AI agent/model performance and track operational metrics such as latency and errors alongside quality/security metrics such as hallucinations, bias, drift, accuracy, cost and token usage.

Splunk’s AI Observability positioning is broader: observe and optimise performance, quality, cost and security across agents, LLMs, vector databases and infrastructure.

In SRE terms, Splunk is building:

Splunk AI direction:

AI Assistant in Observability Cloud
→ natural-language investigations
→ logs + metrics + traces + alerts analysis
→ RCA assistance
→ incident summarisation

AI Observability
→ AI application monitoring
→ AI infrastructure monitoring
→ agent performance tracking
→ LLM quality and safety monitoring

AI Agent Monitoring
→ latency and errors
→ hallucination tracking
→ bias/drift/accuracy
→ token and cost visibility
→ model and agent reliability

Splunk’s direction is very aligned with its historical strength: search, correlation and operational analytics, now wrapped in AI-assisted investigation and AI workload monitoring.


4. New Relic

New Relic is building AI into its platform through New Relic AI, AI-powered observability features, and AI Monitoring / LLM observability.

New Relic says New Relic AI can help instrument systems, generate system health reports and identify alert coverage gaps for full-stack observability.

New Relic has also positioned its platform as AI-powered observability that correlates telemetry across the stack to isolate root cause and reduce operational toil.

For LLM applications, New Relic AI monitoring captures telemetry from AI-powered apps through APM agents and collects data from external LLMs and vector stores.

New Relic’s AI monitoring focuses on troubleshooting, comparing and optimising LLM prompts and responses for performance, cost and quality issues such as hallucination, bias and toxicity.

It also supports LLM observability through OpenLIT integration, which automatically generates traces and metrics for LLM and VectorDB performance and cost analysis.

In SRE terms, New Relic is building:

New Relic AI direction:

New Relic AI
→ AI assistant for DevOps
→ system health reports
→ alert coverage analysis
→ instrumentation help

AI-powered observability
→ telemetry correlation
→ root-cause isolation
→ faster troubleshooting

AI Monitoring / LLM Observability
→ prompt/response analysis
→ LLM latency and error tracking
→ cost analysis
→ hallucination, bias and toxicity signals
→ VectorDB visibility

New Relic’s direction is about making its “all-in-one observability” platform more assistant-driven and making AI workloads first-class observable systems.


What they are all converging on

All four vendors are converging on the same broad architecture:

1. Collect telemetry
metrics, logs, traces, events, profiles, topology

2. Normalize context
services, owners, deployments, dependencies, SLOs, runbooks

3. Apply AI
anomaly detection, query generation, summarisation, RCA, prediction

4. Explain
what happened, why it happened, what changed, what is affected

5. Act
create ticket, page team, suggest fix, trigger workflow, remediate safely

6. Observe AI itself
LLM calls, prompts, responses, token cost, model quality, hallucinations,
safety, drift, vector DBs, RAG pipelines, agent workflows

The big product categories are:

AI capabilityWhat vendors are building
AI assistantChat interface over observability data
AI SRE agentInvestigates incidents and proposes actions
Automated RCAFinds likely root cause using telemetry and topology
Predictive anomaly detectionSpots problems before thresholds are breached
Natural-language queryingConverts plain English into PromQL, LogQL, SQL, trace/log queries
Incident summarisationExplains impact, timeline, evidence and next steps
Runbook automationRecommends or triggers operational workflows
AI workload monitoringMonitors LLMs, agents, prompts, responses, cost and quality
Governance/safetyTracks hallucination, toxicity, bias, privacy and compliance risks
Cost optimisationReduces telemetry waste and tracks LLM/token spend

The strategic reason they are doing this

The observability market is under pressure from three directions.

First, telemetry volumes are exploding. Kubernetes, microservices, edge, GPU clusters, AI workloads and distributed storage produce far more telemetry than humans can manually inspect.

Second, SRE teams are overloaded. Vendors are trying to sell “lower MTTR” and “less operational toil” by making the platform do more triage and correlation automatically.

Third, AI applications create new observability requirements. Traditional APM can tell you latency and error rate, but AI systems also need visibility into prompts, responses, hallucinations, drift, token usage, model quality, RAG retrieval quality, vector database behaviour and agent decisions.

So vendors are not just adding AI because it is fashionable. They are defending and expanding their core observability business.

What this means for an SRE / Observability Platform Engineer

The skill shift is significant.

Old value:

Build dashboards.
Write alert rules.
Know PromQL and LogQL.
Search logs manually.
Correlate incidents by experience.

New value:

Design telemetry that AI can reason over.
Standardise labels and service metadata.
Maintain accurate topology and ownership maps.
Connect observability to deployment and incident data.
Create safe remediation workflows.
Validate AI-generated RCA.
Control cost, access and blast radius.

The winners will not simply be the engineers who know the most dashboards. The winners will be the engineers who can build a trusted operational intelligence layer over metrics, logs, traces, topology and automation.

AI Strategies of New Observability Products

Coralogix is releasing the most explicit “AI observability product suite.” Cribl is positioning itself as the telemetry data layer for AI-era observability. Tsuga is newer and appears to be building an AI-native, bring-your-own-cloud observability architecture rather than simply adding an AI assistant to an old SaaS model.

Quick comparison

CompanyAI directionProduct maturity from public material
CoralogixAI Center, AI guardrails, AI evaluations, AI-SPM, Olly AI observability agentVery explicit productised AI offering
CriblCribl AI, Copilot, AI-guided Search Investigations, telemetry for humans and agentsStrong AI-assisted telemetry/data-management direction
TsugaBYOC observability for the AI era, agent-native observability, MCP/CLI for customer-owned agentsNewer; more architectural and agent-native positioning

1. Coralogix: AI observability as a full product suite

Coralogix is clearly releasing AI-focused products. Its main AI platform is AI Center, which Coralogix describes as a complete platform for AI-powered applications combining observability, guardrails, evaluations, and AI Security Posture Management in one place. It monitors LLM interactions for health, performance, cost, latency, errors, security and quality issues.

The key Coralogix AI products are:

Coralogix AI Center
├─ AI Observability
├─ AI Guardrails
├─ AI Evaluations
├─ AI Security Posture Management
├─ AI Application Discovery
└─ AI Explorer / Application Drilldown

What Coralogix is targeting

Coralogix is not just monitoring servers. It is monitoring AI application behaviour:

Prompt

LLM call

Response

Evaluation

Guardrail decision

Security / quality / cost signal

Its AI Center monitoring gives an organisation-level view of LLM usage and lets teams drill from a trend down to a specific application and even a specific prompt/response interaction.

It also supports OpenTelemetry GenAI semantic conventions, so teams can send GenAI spans into Coralogix AI Center without needing a Coralogix-specific SDK.

Olly: Coralogix’s AI observability agent

Coralogix also has Olly, which it describes as an AI-native observability agent. Olly lets users ask natural-language questions and get answers across logs, metrics, traces and alerts.

In practice, this is the “AI SRE assistant” layer:

Human asks:
“Why is payment latency rising?”

Olly checks:
├─ logs
├─ metrics
├─ traces
├─ alerts
├─ correlations
└─ possible root causes

Then returns:
├─ explanation
├─ evidence
├─ affected services
└─ recommended next steps

Coralogix also positions Olly as more than a simple assistant: it says Olly uses specialised agents for log analysis, trace exploration, metrics interpretation, security research, code debugging, correlation analysis and hypothesis generation.

My read on Coralogix

Coralogix is trying to own AI production reliability:

Monitor AI apps
Evaluate AI outputs
Detect prompt injection / PII / toxicity
Track token cost
Find bad model behaviour
Use AI to investigate normal production incidents

So yes: Coralogix is strongly AI-focused.

2. Cribl: AI platform for telemetry, not classic dashboard observability

Cribl’s AI angle is different. Cribl is not primarily trying to be another Datadog-style full-stack UI. It is positioning itself as the AI Platform for Telemetry: the collection, routing, shaping, searching and governance layer for machine data used by humans and AI agents. Cribl’s homepage describes the platform as giving enterprises choice and control for telemetry, and says it helps manage and analyse telemetry for both humans and agents.

The AI-focused Cribl areas are:

Cribl AI
├─ Copilot
├─ Copilot Editor
├─ AI-guided Search Investigations
├─ Natural-language queries
├─ AI-assisted pipeline creation
├─ AI telemetry parsing
└─ AI-ready telemetry routing

Cribl AI and Copilot

Cribl says its AI capabilities help teams create and modify pipelines, queries and configurations using natural language. It also says Cribl Copilot provides troubleshooting guidance, answers product/configuration questions and helps teams resolve issues faster.

This matters because a lot of observability toil is not just dashboards. It is:

Parse this log format.
Map this schema.
Route this data.
Drop this noisy field.
Mask this sensitive value.
Send this stream to the SIEM.
Send this other stream to cheaper storage.

Cribl’s AI is aimed at reducing that data-engineering toil.

Copilot Editor

Cribl’s Copilot Editor uses AI to help with schema mapping, translating logs across systems and building telemetry pipelines that clean, filter and route events.

That is important because AI-era observability needs clean, standardised telemetry. A reasoning agent is only useful if the data has usable structure.

Raw logs

AI-assisted parsing

Schema mapping

Enrichment / masking / routing

Search / SIEM / observability backend / AI agent

AI-guided Cribl Search Investigations

Cribl Search has an Investigations feature in preview. The docs describe it as a guided workspace where users explore incidents and telemetry using natural-language prompts. It helps analyse telemetry, identify patterns and document findings without manually building every query.

That means Cribl is moving into the AI-assisted investigation workflow:

Alert or question

Natural-language investigation

Generated queries

Pattern discovery

Findings captured in one workspace

Cribl’s AI observability thesis

Cribl’s recent AI observability messaging is that AI observability is a telemetry problem, not just a dashboard problem. It argues that LLM apps generate prompts, completions, tool calls, retrieval steps, token counts, model choices, policy events and infrastructure signals, and that those need to be collected and shaped for different teams and tools.

My read on Cribl

Cribl is not saying:

“We are the AI RCA dashboard.”

It is saying:

“We are the telemetry control plane that makes AI investigations possible.”

That is strategically clever. AI agents need cheap, governed, high-quality access to large telemetry volumes. Cribl wants to be the pipe, filter, schema and search layer underneath that.

3. Tsuga: AI-native observability architecture, still early

Tsuga is the newest and least mature publicly compared with Coralogix and Cribl, but it is very clearly positioning itself around the AI-era observability problem.

Tsuga describes itself as a bring-your-own-cloud observability platform for logs, metrics, traces and APM, deployed inside the customer’s AWS account using infrastructure-as-code. It says customers get the control of self-hosted infrastructure without the operational burden of running it.

Its newer positioning is explicitly AI-era focused. Tsuga announced a $35 million Series A on June 23, 2026, saying it is building “observability for the AI era” inside the customer’s cloud so the customer’s data and AI do not leave their control.

Tsuga’s AI claim

Tsuga’s argument is architectural:

Traditional observability:
telemetry leaves your cloud
vendor stores it
cost rises with volume
AI agents require broad access to vendor-hosted data

Tsuga model:
observability runs inside your cloud
telemetry stays inside your perimeter
AI runs on your own data
agents can use complete telemetry without exporting sensitive context

Tsuga says its AI tools run on the customer’s data inside the customer’s perimeter. It also says automated root-cause analysis runs on complete, unsampled data, and that its MCP server and CLI let engineering teams build their own agents on that foundation inside their own security boundary.

That MCP point is important. It suggests Tsuga is not only building an observability UI; it is exposing observability context to AI agents.

Agent-native observability

Tsuga has a specific Agent-Native Observability page. It says Tsuga is built so AI agents can use observability data effectively, affordably and inside the customer environment. It highlights agent-first APIs, MCPs, CLIs and query interfaces designed to return relevant context rather than raw data dumps.

That is a very modern product angle.

AI agent asks:
“What changed before this incident?”

Tsuga should return:
├─ relevant metrics
├─ relevant logs
├─ deployment context
├─ service ownership
├─ topology
└─ probable causal evidence

Not:
└─ 10GB of raw logs

What is less clear with Tsuga

Publicly, Tsuga looks less like:

Named AI assistant with lots of screenshots and feature modules

and more like:

AI-native observability architecture:
BYOC
complete telemetry
agent APIs
MCP
automated RCA
customer-owned AI boundary

So my assessment is: yes, Tsuga is AI-focused, but the public product story is currently more architectural and agent-native than feature-by-feature like Coralogix.

The strategic differences

Coralogix: “Observe and govern AI applications”

Coralogix is focused on production AI application reliability:

LLM monitoring
AI guardrails
Evaluations
AI security posture
Prompt/response visibility
Olly AI investigation agent

Best fit:

Teams deploying LLM apps and agents who need monitoring, safety, cost tracking and AI-assisted troubleshooting.

Cribl: “Prepare and control telemetry for AI”

Cribl is focused on the telemetry substrate:

Collect once
Shape data
Mask sensitive fields
Route anywhere
Search cheaply
Let humans and agents investigate
Use AI to build pipelines and queries

Best fit:

Large enterprises drowning in telemetry volume, SIEM costs, log routing complexity and multi-tool data sprawl.

Tsuga: “Run AI-era observability inside your own cloud”

Tsuga is focused on sovereign, cost-controlled, agent-native observability:

BYOC deployment
Telemetry stays in your cloud
AI and agents run inside your boundary
Automated RCA on unsampled data
MCP/CLI for custom SRE agents

Best fit:

Regulated, European, AI-native or high-scale companies that do not want telemetry, prompts, incident history and operational context exported to a third-party SaaS cloud.

The bigger market pattern

These newer players are attacking the incumbents from three angles:

1. Cost
AI generates more telemetry.
Per-GB SaaS observability becomes painful.

2. Data control
AI telemetry includes prompts, responses, business context and security-sensitive data.
Customers do not always want that in a vendor cloud.

3. Agent-readiness
Future observability is not just dashboards for humans.
AI agents need APIs, context retrieval, governed telemetry access and automated RCA.

So the new wave is less about “AI as a dashboard chatbot” and more about building the data foundation for AI-driven operations.

The sharpest summary is:

Coralogix = AI observability product suite
Cribl = AI-ready telemetry control plane
Tsuga = AI-native sovereign observability architecture

For an SRE/observability platform engineer, these companies are worth watching because they indicate where the next jobs and platform designs are going: telemetry engineering, AI-readable context, agent-safe access, automated RCA, guardrails and cost-controlled observability architectures.

Opensource AI Observability

AI adoption in open-source observability is happening, but it is different from what Datadog, Dynatrace, Splunk and New Relic are doing.

The commercial vendors are embedding AI directly into their SaaS platforms. The open-source ecosystem is mostly building the standards, collectors, SDKs, self-hostable platforms and agent interfaces that allow AI observability to work without vendor lock-in.

The big shift is this:

Old open-source observability:

Prometheus / Loki / Tempo / Grafana / OpenTelemetry

Collect, store, query, dashboard, alert


AI-era open-source observability:

OpenTelemetry + collectors + traces + logs + metrics + AI metadata

LLM / agent / RAG / GPU / vector DB visibility

AI assistants, AI SRE agents, natural-language querying, RCA

1. Grafana: open observability stack + AI features around it

Grafana Labs is moving in two directions.

First, it is keeping the open observability stack relevant for AI-era workloads: Grafana, Loki, Mimir, Tempo, Pyroscope and Alloy remain the core telemetry stack.

Second, it is adding AI-powered layers on top, especially in Grafana Cloud.

Grafana’s AI Observability product is built on OpenTelemetry and is aimed at teams running LLM agents in production. It monitors agent activity, traces conversations, tracks costs and evaluates quality. Grafana documents SDK support for Go, Python, TypeScript, Java and .NET, plus integrations with frameworks such as LangChain, LangGraph, OpenAI Agents and Vercel AI SDK.

Grafana also has Grafana Assistant, an AI-powered observability agent. It lets users ask questions like “Show me CPU usage” or “Create a dashboard for my database,” and it works across metrics, logs, traces, profiles and databases. Grafana says it can run investigations, manage dashboards, build/refine queries and help users navigate Grafana resources.

The important nuance: Grafana Assistant is not the same thing as open-source Grafana itself. It is primarily a Grafana Cloud AI capability, though Grafana documents a self-managed Assistant app that connects to a Grafana Cloud stack with reduced functionality.

Grafana’s most open-source-relevant AI move is probably Grafana Alloy. Alloy is Grafana Labs’ open-source OpenTelemetry Collector distribution with built-in Prometheus pipelines and support for metrics, logs, traces and profiles. It gives Grafana a standard collector layer for AI-era telemetry pipelines.

So Grafana’s strategy is:

Grafana AI strategy:

Open-source base:
Grafana
Loki
Mimir
Tempo
Pyroscope
Alloy

AI observability:
LLM / agent traces
cost tracking
quality evaluation
AI workload dashboards

AI assistant:
natural-language querying
dashboard creation
investigation assistance
query generation

Strategic direction:
keep the OSS stack open,
but place high-value AI workflows in Grafana Cloud.

2. OpenTelemetry: the standard layer for AI observability

OpenTelemetry is not a company; it is a CNCF open-source project. Its role is different from Grafana’s.

OpenTelemetry is becoming the standard telemetry schema and instrumentation layer for AI systems.

OpenTelemetry describes itself as an open-source observability framework for cloud-native software, providing APIs, libraries, agents and collector services for capturing telemetry. It also emphasises vendor-neutral instrumentation, meaning you instrument once and export to different backends.

For AI, the key development is OpenTelemetry semantic conventions for generative AI. OpenTelemetry has been extending its conventions so GenAI telemetry can capture model parameters, response metadata, token usage, traces, metrics and events for model interactions.

That matters because LLM systems need new telemetry fields that normal web apps did not need:

Traditional app telemetry:
service.name
http.status_code
duration
error
route
database call

AI app telemetry:
model name
prompt
completion
token count
tool call
retrieval step
vector DB query
embedding model
cost
temperature
hallucination score
safety evaluation

OpenTelemetry is not trying to become an AI assistant. Its value is that it gives the ecosystem a common language for AI telemetry.

So OpenTelemetry’s strategy is:

OpenTelemetry AI strategy:

Standardise:
spans
metrics
logs/events
attributes
semantic conventions

Support:
LLM calls
model interactions
prompts/responses
token usage
latency
errors
provider metadata

Enable:
Grafana
SigNoz
Langfuse
OpenLIT
Elastic
New Relic
Datadog
custom platforms

Strategic direction:
become the neutral telemetry contract for AI applications.

3. OpenLIT: open-source LLM observability on OpenTelemetry

OpenLIT is a good example of the new generation of open-source AI observability projects.

It describes itself as an open-source LLM observability and AI engineering platform built on OpenTelemetry. Its positioning is self-hosted, privacy-first and vendor-neutral.

This is important because many companies do not want prompts, responses, user inputs, sensitive data or AI-agent traces going straight into a third-party SaaS.

OpenLIT’s direction is:

OpenLIT strategy:

Monitor:
LLM calls
latency
token usage
cost
model behaviour
vector DBs
GPU usage

Deploy:
self-hosted
OpenTelemetry-native
privacy-first

Best fit:
teams building AI apps who want open-source AI observability
without committing to a commercial platform first.

4. Langfuse: open-source LLM tracing and evaluation

Langfuse is another major open-source AI observability project.

It focuses on LLM application tracing: capturing prompts, model responses, token usage, latency, tool calls and retrieval steps. Langfuse also provides AI-engineering features such as LLM-as-judge evaluation, prompt management, experiments and datasets, and it can be self-hosted.

Langfuse is less like “Grafana for all infrastructure” and more like “observability and evaluation for LLM applications.”

Its strategy is:

Langfuse strategy:

Trace:
prompt
response
tool call
RAG step
latency
token usage
cost

Evaluate:
quality
scoring
experiments
prompt versions
datasets

Best fit:
AI product teams who need to debug and improve LLM apps,
not just monitor infrastructure.

5. SigNoz: open-source observability with AI-agent access

SigNoz is moving from being an open-source Datadog/New Relic alternative into a more AI-aware observability platform.

SigNoz describes itself as an open-source observability tool powered by OpenTelemetry, covering logs, metrics, traces, dashboards, alerts and LLM/AI observability. It also advertises an MCP server for bringing telemetry into coding agents and an AI teammate called Noz for incident investigation, alert tuning and dashboard building.

This is significant because it shows a broader open-source pattern: observability platforms are not just adding AI dashboards; they are exposing telemetry to AI agents.

SigNoz direction:

OpenTelemetry-native observability
+
LLM/AI observability
+
MCP access for coding agents
+
AI teammate for investigations and dashboards

That is where open-source observability is going: not just dashboards for humans, but context APIs for agents.

6. HolmesGPT: open-source AI SRE agent

HolmesGPT is another important example because it is not primarily about observing LLM apps. It is about using AI to investigate production incidents.

HolmesGPT describes itself as an open-source AI agent for investigating production incidents and finding root causes across Kubernetes, VMs, cloud providers, databases and SaaS platforms. It is listed as a CNCF sandbox project.

That puts it closer to the Datadog Bits AI / Dynatrace Davis AI direction, but in open-source form.

HolmesGPT strategy:

Input:
alerts
Kubernetes state
metrics
logs
cloud context
runbooks

AI task:
investigate incident
gather evidence
find probable root cause
explain next action

Best fit:
platform teams wanting an open-source AI SRE layer
over existing observability tools.

The overall open-source adoption pattern

Open-source observability is adopting AI in four layers.

1. AI telemetry standards

This is where OpenTelemetry is most important.

Goal:
make AI applications observable in a standard way

Examples:
GenAI semantic conventions
token usage attributes
model request spans
prompt/response events
tool-call spans

This is foundational. Without standard AI telemetry, every vendor and OSS project invents incompatible schemas.

2. AI workload observability

This is where Grafana AI Observability, OpenLIT, Langfuse and SigNoz fit.

Goal:
monitor LLM apps, agents and RAG pipelines

Signals:
latency
token cost
prompt/response quality
hallucination risk
model errors
vector DB retrieval
tool calls
agent steps

3. AI-assisted operations

This is where Grafana Assistant, HolmesGPT, SigNoz Noz and similar tools fit.

Goal:
help humans investigate production systems faster

Capabilities:
natural-language querying
alert explanation
dashboard generation
root-cause hints
log summarisation
incident summaries

4. Agent-native observability

This is the newest layer.

Goal:
let AI agents consume observability data safely

Interfaces:
MCP servers
CLI tools
API access
context retrieval
guarded query execution
evidence-based RCA

This matters because future AI coding agents and SRE agents will need access to production telemetry to debug issues. The observability stack must become queryable by both humans and machines.

The key difference from commercial observability

Commercial vendors are building polished AI experiences inside their own SaaS platforms.

Open-source observability is building the portable foundations:

LayerOpen-source approach
InstrumentationOpenTelemetry SDKs and semantic conventions
CollectionOpenTelemetry Collector, Grafana Alloy
Storage/queryGrafana LGTM, SigNoz, ClickHouse-based stacks
AI app tracingOpenLIT, Langfuse, OTel GenAI conventions
AI SREHolmesGPT, MCP-enabled tools
Agent accessMCP, APIs, CLI workflows

The strategic difference is:

Commercial vendors:
"Use our platform and our AI will help you."

Open-source ecosystem:
"Instrument once, own your data, expose telemetry to any backend or AI agent."

What this means for SREs and observability engineers

The valuable skill is moving from only operating dashboards to building an AI-readable telemetry platform.

That means:

You need:
consistent OpenTelemetry attributes
clean service names
good resource metadata
deployment markers
trace/log/metric correlation
AI workload spans
token/cost metrics
evaluation signals
MCP or API access for agents
guardrails around sensitive telemetry

For a homelab or professional platform, the modern open-source direction would be:

Applications / AI agents

OpenTelemetry SDKs + GenAI semantic conventions

Grafana Alloy or OpenTelemetry Collector

Mimir / Loki / Tempo / ClickHouse / SigNoz / Langfuse / OpenLIT

Grafana dashboards + AI assistant / HolmesGPT / MCP-enabled agents

The sharp summary:

Grafana is making the open observability stack AI-aware.

OpenTelemetry is becoming the standard language for AI telemetry.

OpenLIT, Langfuse and SigNoz are making LLM apps observable.

HolmesGPT-style tools are turning open telemetry into AI-assisted SRE investigations.

So, yes: open-source observability is adopting AI quickly, but the centre of gravity is different. The open-source world is less about one vendor-owned AI brain and more about open telemetry, self-hostable AI observability, and agent-ready operations.

AI DC Buildouts, Changing Jobs & Roles of the 4th Industrial Revolution

The AI infrastructure race is being led by a relatively small number of corporations, but together they represent well over US$1 trillion of planned investment over the remainder of this decade. Many figures below are approximate because companies often announce campuses or regions rather than exact building counts, and projects evolve rapidly.

CorporationOperational data centres (approx.)AI data centres planned / under constructionMain locations
Amazon Web Services100+ availability zones across 36+ regionsDozens of new AI campuses through 2028 (including Project Rainier)USA (Virginia, Pennsylvania, Georgia, Mississippi, Oregon), Europe, UK, Germany, India, Japan, Australia
Microsoft300+ data centres globallyTens of new AI campuses; ~$80B AI infrastructure investmentUSA, Sweden, Finland, UK, Germany, Australia, Japan, Texas, Wisconsin
Google40+ cloud regions and many hyperscale campusesMultiple new AI mega-campusesOhio, Nebraska, Oklahoma, Texas, Iowa, Europe, Asia
Meta20+ hyperscale campusesNumerous AI campuses under expansionLouisiana, Ohio, Iowa, Texas, Alabama, with additional capacity from Crusoe
Oracle80+ cloud regionsMulti-gigawatt AI campuses via Stargate plus Oracle Cloud expansionTexas, New Mexico, Ohio, Michigan and other US states
OpenAIOperates via partners rather than owning a global DC fleetStargate aims for roughly 20 major AI campusesTexas, New Mexico, Ohio, Wisconsin, Michigan and additional US sites
SoftBankNo major hyperscale cloud estateCo-investor in StargateUnited States (multiple campuses)
CoreWeave~30+ AI data centresContinuing rapid expansionUSA, UK, Norway, Spain and additional European sites
xAI1 flagship AI supercluster (Colossus) plus expansionsExpanding toward one million GPUsMemphis, Tennessee and additional US locations
CrusoeSeveral AI campuses under operationMultiple campuses for OpenAI, Meta and MicrosoftTexas, Oklahoma and other US states
NscaleEarly-stage AI infrastructureUK and European sovereign AI facilities plannedUnited Kingdom, Norway and Europe (build-out still in early stages)

Where the biggest build-out is happening

The current hotspots are:

  • Texas – by far the largest concentration, with Stargate, Oracle, Microsoft, Google and xAI all investing heavily.
  • Ohio – Google, Meta and Oracle are all expanding there.
  • Louisiana – Meta’s enormous AI campus.
  • Virginia – still the world’s largest concentration of conventional cloud data centres.
  • Pennsylvania, Georgia and Oklahoma – major AWS and Google investments.
  • Wisconsin, Michigan and New Mexico – emerging AI infrastructure hubs.

The scale is unprecedented

The six largest AI infrastructure builders (Amazon, Microsoft, Google, Meta, Oracle and the Stargate consortium) have collectively committed around US$690–700 billion in AI-related capital expenditure, with 74 new AI-focused projects breaking ground in the US during 2026 alone. Longer-term projections suggest total AI infrastructure investment could exceed US$5 trillion globally by 2030.

One notable trend is that these companies are no longer building isolated data centres. They are constructing AI campuses consisting of anywhere from 8 to more than 20 individual data-centre buildings, all linked by ultra-high-speed networking so they function as a single giant AI supercomputer. A single campus can consume 500 MW to over 1 GW of power, equivalent to the electricity demand of a medium-sized city.

The largest AI campuses consume enormous quantities of resources. Some impacts are already measurable, while others remain uncertain and depend on how utilities allocate costs. It’s important to distinguish local effects (which can be substantial) from national effects (which are often much smaller).

ResourceHow AI campuses use itImpact on consumers
ElectricityHundreds of MW to several GW continuouslyHigher utility investment, possible higher electricity bills in constrained regions, increased need for new power stations
WaterCooling systems can consume millions of gallons per day, although newer designs increasingly use closed-loop or air coolingCompetition for water in drought-prone areas; pressure on municipal supplies
LandCampuses often occupy hundreds to thousands of acresIndustrial land values rise; reduced land available for other development
Construction materialsSteel, concrete, copper, fibre-optic cableHigher demand can contribute to material price increases, though AI is only one of several drivers
Electrical equipmentTransformers, switchgear, substationsLonger lead times for utilities and industrial customers
GPUs and serversHundreds of thousands of accelerators per campusSemiconductor manufacturing capacity diverted toward AI, increasing demand for advanced chips
Skilled labourElectrical engineers, construction workers, data-centre techniciansWage competition and labour shortages in some regions
Natural gasSome campuses are building dedicated gas-fired generationIncreased demand for gas infrastructure and fuel in certain markets

Electricity prices

Electricity is the area where households are most likely to notice an effect.

Large AI campuses require utilities to invest in:

  • New transmission lines
  • New substations
  • Additional generation
  • Grid upgrades

Who pays depends on regulation.

In some regions, regulators are trying to ensure that AI companies pay most of these costs. In others, some infrastructure costs are spread across all customers, which can increase household bills.

For example:

RegionReported effect
PJM (eastern U.S.)Wholesale electricity prices rose sharply as demand from AI data centres increased, prompting calls for tech companies to fund more of the required infrastructure.
ArizonaUtilities warn that electricity infrastructure may need to roughly double within a few years because of AI growth.
VirginiaData centres already account for a very large share of electricity demand in some parts of the state.

It’s also worth noting that recent academic work found that, historically (2015–2024), data centres slightly reduced average U.S. electricity prices by helping spread fixed grid costs over more customers. The authors caution that this may not hold if future supply constraints become severe.

Water

Water is highly location-dependent.

Older evaporative cooling systems can use several million gallons of water per day. Newer AI facilities increasingly employ:

  • Closed-loop liquid cooling
  • Direct-to-chip liquid cooling
  • Air cooling where practical

These approaches can significantly reduce freshwater consumption, but water remains a concern in arid regions.

Housing

AI campuses can affect local housing markets by:

  • Bringing thousands of construction workers
  • Creating highly paid engineering jobs
  • Increasing demand for rental accommodation

The effect is usually local rather than national.

Employment

Benefits include:

  • Construction employment
  • Electrical contracting
  • Operations and maintenance jobs
  • Security
  • Network engineering
  • Mechanical engineering

However, once operational, AI campuses employ far fewer people than factories of similar size.

Have prices increased?

Evidence is mixed:

ItemObserved trend
ElectricitySome U.S. regions have seen higher wholesale prices and concerns about retail bills where AI demand is concentrated.
WaterMostly local impacts in water-stressed regions rather than broad consumer price rises.
HousingLocal increases around major developments are common, though driven by multiple factors.
Construction materialsIncreased demand contributes to pressure, but AI is only one of many drivers.
Consumer goodsThere is currently little evidence that AI data centres have directly increased the prices of everyday retail goods.

Overall, the greatest measurable impact today is on electricity infrastructure. The International Energy Agency projects that global data-centre electricity consumption will more than double to about 945 TWh by 2030, driven largely by AI. Whether households ultimately pay more depends on regulatory decisions about who funds the new power plants, transmission lines and substations needed to support these AI campuses.

Changing Jobs and Roles

The AI infrastructure boom is creating the largest shift in infrastructure engineering since the rise of public cloud around 2006–2015. Traditional cloud providers needed engineers to build reliable, scalable services for virtual machines, storage and networking. AI Factories require all of that plus expertise in GPUs, ultra-high-speed networking, power engineering, liquid cooling and AI software platforms.

Evolution of Infrastructure Engineering

EraPrimary GoalMain InfrastructureTypical Employer
Enterprise IT (1990–2010)Business applicationsServers, SAN, LANBanks, government, enterprises
Cloud (2006–2024)Multi-tenant cloud servicesHyperscale datacentersAWS, Azure, Google Cloud
AI Factory (2024–2035+)Massive AI computationGPU supercomputers, AI campusesOpenAI, Meta, xAI, Oracle, CoreWeave, Nscale, AWS

Traditional Cloud Provider Jobs

Cloud providers traditionally organised engineering into around a dozen major disciplines.

DisciplineTypical Roles
Datacenter FacilitiesFacilities Engineer, Mechanical Engineer, Electrical Engineer
ComputeServer Engineer, Linux Engineer, Virtualisation Engineer
StorageStorage Engineer, Ceph Engineer, SAN Engineer
NetworkingNetwork Engineer, Network Architect
Cloud PlatformKubernetes Engineer, OpenStack Engineer, VMware Engineer
ReliabilitySite Reliability Engineer (SRE), DevOps Engineer
SecuritySecurity Engineer, IAM Engineer
ObservabilityMonitoring Engineer, Logging Engineer
AutomationAnsible Engineer, Terraform Engineer
SoftwareBackend Engineer, Platform Engineer
OperationsNOC Engineer, Incident Manager
CapacityCapacity Planner, Performance Engineer

A large hyperscale datacenter typically employs 100–300 permanent staff, with many more contractors during construction.


AI Factory Engineering

AI Factories introduce entirely new engineering domains.

New DisciplineExample Roles
GPU InfrastructureGPU Systems Engineer, GPU Cluster Engineer
AI NetworkingInfiniBand Engineer, RoCE Engineer, Ethernet Fabric Engineer
AI StorageHigh-performance Storage Engineer, Parallel Filesystem Engineer
AI CoolingLiquid Cooling Engineer, Thermal Systems Engineer
AI SchedulingSlurm Engineer, Kubernetes AI Platform Engineer
AI RuntimeCUDA Engineer, Distributed Training Engineer
AI OptimisationML Infrastructure Engineer
AI Datacenter PowerHigh-voltage Power Engineer
AI Chip EngineeringAccelerator Integration Engineer
AI OperationsAI Infrastructure SRE

Engineering Stack

Traditional cloud:

Applications
Containers
Virtual Machines
Hypervisor
Servers
Storage
Networking
Power

AI Factory:

AI Models
Distributed Training
Kubernetes / Slurm
CUDA / ROCm
100,000+ GPUs
InfiniBand / RoCE
Parallel Storage
Liquid Cooling
Gigawatt Power

Traditional Cloud Skills

  • Linux
  • VMware
  • Kubernetes
  • OpenStack
  • AWS
  • Azure
  • Terraform
  • Ansible
  • Prometheus
  • Grafana
  • Python
  • Go
  • Storage
  • Networking

New AI Factory Skills

Additional skills now becoming highly valuable include:

  • NVIDIA GPU architecture
  • AMD Instinct
  • CUDA
  • NCCL
  • GPUDirect RDMA
  • InfiniBand
  • RoCE v2
  • Slurm
  • Ray
  • Kubeflow
  • MLFlow
  • Triton Inference Server
  • Parallel file systems (Lustre, IBM Storage Scale/GPFS, BeeGFS)
  • High-performance Ethernet (400/800 GbE)
  • Direct-to-chip liquid cooling
  • Rack-scale power engineering

Jobs Growing Fastest

RoleGrowth Outlook
GPU Infrastructure EngineerExtremely High
AI Platform EngineerExtremely High
HPC Systems EngineerExtremely High
Kubernetes Platform EngineerVery High
Storage EngineerVery High
Site Reliability EngineerVery High
Network Fabric EngineerExtremely High
Power Systems EngineerExtremely High
Mechanical Cooling EngineerExtremely High
AI Operations EngineerExtremely High

Approximate Current Workforce (2025–2026)

The exact numbers are difficult to measure because many roles overlap, but industry estimates suggest:

ProfessionEstimated Global Workforce
Cloud Engineers2–3 million
DevOps Engineers1.5–2 million
Site Reliability Engineers400,000–700,000
Kubernetes Engineers500,000–900,000
Datacenter Engineers300,000–500,000
Storage Engineers200,000–350,000
HPC Engineers80,000–150,000
GPU Infrastructure Specialists20,000–40,000
AI Infrastructure Engineers50,000–100,000

Estimated Workforce Needed by 2030

As AI campuses proliferate worldwide, demand is expected to increase significantly.

ProfessionEstimated Demand by 2030
AI Infrastructure Engineers300,000–500,000
GPU Cluster Engineers150,000–250,000
HPC Engineers250,000–400,000
SREs (AI/Cloud)800,000–1.2 million
Kubernetes Platform Engineers1–1.5 million
Network Fabric Engineers300,000–500,000
Storage Engineers500,000+
Power Engineers400,000–700,000
Cooling Engineers250,000–500,000

These are indicative estimates derived from announced AI infrastructure expansion plans and broader industry workforce analyses rather than official forecasts.


Where the Talent Is Coming From

Most AI Factory engineers are not newly trained graduates. Companies are recruiting experienced professionals from adjacent disciplines:

Previous RoleTransition To
Cloud EngineerAI Platform Engineer
Kubernetes EngineerAI Infrastructure Engineer
SREAI Operations Engineer
HPC EngineerGPU Cluster Engineer
Linux EngineerGPU Systems Engineer
Network EngineerInfiniBand/RoCE Fabric Engineer
Storage EngineerAI Storage Architect
OpenStack EngineerAI Cloud Platform Engineer
Ceph EngineerHigh-performance Storage Engineer
DevOps EngineerML Platform Engineer

Why This Matters

The next decade is likely to see a shift similar to the transition from enterprise IT to cloud computing. During the 2010s, the most sought-after roles were Cloud Engineers, DevOps Engineers and SREs. Through the late 2020s and into the 2030s, many of the highest-demand infrastructure roles are expected to centre on AI Factories: designing, building and operating gigawatt-scale GPU campuses, high-performance storage systems, ultra-low-latency networks and AI platforms.

For someone with expertise in Linux, Kubernetes, observability, automation, storage and cloud infrastructure, the progression into AI infrastructure engineering is relatively direct. Adding knowledge of GPU platforms, HPC networking (InfiniBand/RoCE), parallel storage (such as Lustre or GPFS), Slurm, CUDA and liquid-cooled datacenter design positions engineers for many of the roles expected to see the strongest demand over the coming decade.

Part of the 4th Industrial Revolution

Yes — this is plausibly the tail-end phase of the Forth Industrial Revolution, but with one caveat: we do not yet know whether AGI/ASI will arrive, or when. What is clear is that capital, land, power, water, chips, networks and engineering labour are being redirected toward AI factories.

The simplest framing:

Industrial phaseCore machineMain resourceMain labour shift
1stSteam engineCoalFarm → factory
2ndElectrified production lineOil, steel, electricityCraft → mass production
3rdComputerSilicon, softwareClerical → digital
4thCloud + automationData, networks, platformsIT → cloud/SRE/DevOps
5thAI factoryCompute, power, GPUs, dataHuman labour → AI-augmented/AI-directed labour

The AI factory is the new “mill.” Instead of spinning cotton or stamping cars, it converts electricity + chips + data + models into intelligence services: code, design, analysis, customer support, robotics control, synthetic media, drug discovery and eventually autonomous decision systems.

The resource pull is already visible. The IEA projects global data-centre electricity consumption could roughly double to about 945 TWh by 2030, growing far faster than general electricity demand. That is why hyperscalers, AI labs and neoclouds are racing to secure power, grid connections, GPUs, cooling, land and engineering staff.

On jobs, the likely pattern is not “all jobs disappear.” It is task compression: fewer people needed for routine cognitive work, more people needed for infrastructure, supervision, security, robotics, energy, regulation and high-complexity design. Goldman Sachs has estimated that AI could expose the equivalent of 300 million full-time jobs globally to automation, while the World Economic Forum projects by 2030 about 170 million roles created and 92 million displaced, for a net gain of 78 million under its surveyed-employer scenario.

Likely traditional jobs under pressure:

AreaJobs most exposed
Admin/officeData entry, scheduling, basic document processing
Customer serviceTier-1 support, call-centre scripts, helpdesk triage
SoftwareBoilerplate coding, simple QA, basic web/app work
Finance/legalDocument review, reconciliation, compliance paperwork
Media/marketingGeneric copywriting, SEO text, simple design production
EducationBasic tutoring, marking, lesson-content generation
Transport/logisticsDispatch, route planning, warehouse coordination
RetailCheckout, product support, inventory admin

New and expanded jobs:

Future areaRoles likely to grow
AI infrastructureGPU cluster engineer, AI SRE, AI platform engineer
Power/gridSubstation engineer, energy systems engineer, microgrid operator
Cooling/facilitiesLiquid-cooling engineer, thermal engineer, datacenter mechanic
NetworkingInfiniBand/RoCE engineer, optical network engineer
Storage/dataParallel storage engineer, data governance engineer
AI safety/securityModel auditor, AI red-team engineer, AI incident responder
RoboticsRobot fleet supervisor, autonomy technician, human-robot workflow designer
RegulationAI compliance officer, algorithmic accountability auditor
Human-AI workAgent orchestrator, prompt/workflow architect, AI operations manager
Synthetic worldsSimulation designer, digital twin engineer, synthetic-data engineer

If AGI arrives, the shift accelerates. If ASI arrives, the shift becomes civilisational: the scarce resources may become energy, compute rights, physical materials, robotics capacity, trusted governance and human legitimacy, rather than ordinary labour.

So yes: the AI build-out looks like the physical foundation of a Fifth Industrial Revolution — not just software, but a new industrial base built around manufactured intelligence.

Climate change and broader sociological factors are arguably the largest long-term uncertainties for the Fifth Industrial Revolution. Unlike technical bottlenecks, they can alter not just the pace of AI adoption but also where, how, and for whom AI infrastructure is built.

I don’t think climate change will stop the AI revolution, but it could fundamentally reshape it. History suggests industrial revolutions adapt to resource constraints rather than ending because of them.

Climate change

1. Energy transition

Today’s AI factories consume enormous amounts of electricity.

If climate policies tighten globally, AI companies may no longer be able to rely on inexpensive fossil-fuel generation.

This is already pushing investment towards:

  • Nuclear power
  • Small Modular Reactors (SMRs)
  • Geothermal
  • Offshore wind
  • Utility-scale solar
  • Long-duration batteries
  • Grid-scale storage

By the 2040s, a successful AI company may be judged as much by its carbon intensity per AI token as by its model quality.


2. Water shortages

Many AI campuses currently use water-intensive cooling.

Increasing droughts could force AI factories to relocate.

Future AI campuses are likely to favour:

  • Scotland
  • Norway
  • Sweden
  • Finland
  • Iceland
  • Canada
  • Pacific Northwest
  • Patagonia

Cool climates reduce cooling costs while providing more reliable water supplies.


3. Sea-level rise

Many current datacentres sit near coasts because they benefit from:

  • Fibre landing stations
  • Major cities
  • Existing infrastructure

Over decades, flood risks may encourage more inland development.


4. Extreme weather

Increasingly frequent:

  • Heatwaves
  • Wildfires
  • Hurricanes
  • Flooding

all increase operational risks.

Future campuses may need:

  • Greater redundancy
  • Fire-resistant designs
  • Multiple grid connections
  • Larger battery systems
  • Independent power generation

Resource nationalism

Countries increasingly recognise compute as a strategic asset.

Competition may intensify over:

  • Lithium
  • Copper
  • Rare earth elements
  • Uranium
  • Semiconductor-grade silicon
  • Freshwater
  • Electricity

The next century may see competition over compute capacity much as the twentieth century saw competition over oil.


Demographics

Many developed nations face ageing populations.

This may actually accelerate AI adoption.

Examples include:

  • Japan
  • South Korea
  • Germany
  • Italy

If fewer working-age people are available, automation becomes economically attractive.


Education

Universities are already adapting.

Future curricula may emphasise:

  • AI engineering
  • Robotics
  • HPC
  • Power engineering
  • Semiconductor engineering
  • AI governance

Routine programming skills alone may become less valuable than systems integration, critical thinking and domain expertise.


Public trust

AI adoption depends heavily on social acceptance.

Concerns include:

  • Surveillance
  • Privacy
  • Bias
  • Deepfakes
  • Autonomous weapons
  • Job displacement

Public backlash could lead to stricter regulation or slower deployment in some sectors.


Wealth inequality

One of the most significant risks is that AI could concentrate wealth among those who own:

  • AI models
  • Compute infrastructure
  • Semiconductor intellectual property
  • Energy assets
  • Data

If productivity gains are not widely shared, inequality could increase.

Possible policy responses include:

  • Expanded education and retraining
  • Wage insurance
  • Stronger competition policy
  • Tax reforms
  • New social safety nets

Different countries are likely to pursue different approaches.


Employment transition

Industrial revolutions historically eliminate some jobs while creating others.

The challenge is timing.

If AI removes work faster than new roles appear, societies may experience:

  • Higher unemployment
  • Political instability
  • Reduced consumer spending
  • Pressure for labour-market reforms

Managing this transition is likely to be one of the defining policy challenges of the coming decades.


Geopolitics

Compute is becoming a strategic resource.

This may encourage blocs centred around:

  • North America
  • Europe
  • China
  • India
  • Middle East

Each could develop increasingly independent AI ecosystems, supply chains and regulations.


Alternative futures

ScenarioAI build-outSociety
Green AI RevolutionAI powered largely by low-carbon energy; highly efficient hardwareAI helps accelerate decarbonisation and scientific progress
AI Arms RaceNational security drives rapid expansion despite environmental costsFragmented AI ecosystems and geopolitical competition
AI BubbleInfrastructure investment slows after poor returnsAI remains important but grows more gradually
Climate Adaptation AIAI prioritises climate modelling, energy optimisation and resilient infrastructureAI becomes a key tool for adapting to climate change
Post-Scarcity Transition (speculative)Abundant clean energy and highly capable AI dramatically reduce production costsWork shifts towards creativity, care, governance and exploration

The “AI Factory Economy”

A useful way to think about the long term is that AI factories may become a new class of critical infrastructure, similar to:

  • Power stations
  • Railways
  • Ports
  • Telecommunications
  • The Internet

The economy could evolve around interconnected systems:

Clean Energy


AI Factories


Robotics + Software + Scientific Discovery


Higher Productivity


Lower Cost of Goods and Services


More Resources Available for Society

That is an optimistic pathway. A less favourable outcome is also possible if productivity gains are unevenly distributed, infrastructure cannot keep pace, or environmental constraints become more severe.

The most important sociological question

The defining issue may not be whether AI becomes powerful enough—it almost certainly will continue to improve significantly. The larger question is who benefits from the productivity gains.

Previous industrial revolutions eventually raised average living standards, but they also brought decades of disruption, labour conflict and institutional change. The Fifth Industrial Revolution, if it unfolds as many expect, is likely to follow a similar pattern: technological progress may be rapid, but the economic and social institutions needed to distribute its benefits will evolve more slowly.

In other words, the success of the Fifth Industrial Revolution may depend less on building bigger AI factories and more on how societies adapt their education systems, labour markets, energy infrastructure and governance to make effective use of the capabilities those AI factories create.

What would an AI crash look like?

An AI crash would resemble a hybrid of the 1990s dot-com bust and the 2008 financial crisis—but centered around artificial intelligence infrastructure, data centers, and corporate overinvestment. It would likely begin as a sudden market correction in overvalued AI firms and GPU suppliers, then spread through the financial system and tech economy as debt and demand collapse.

Market and Investment Collapse

In early stages, overleveraged companies like OpenAI, Anthropic, or firms heavily reliant on GPU compute (e.g., Nvidia, Oracle, Microsoft) would face sharp valuation drops as AI-generated revenues fail to justify trillion-dollar capital expenditures. Investor panic could trigger a chain reaction, collapsing the leveraged network of data‑center finance. Bloomberg and the Bank of England have both warned of a “sudden correction” and circular investing between chip firms and hyperscalers that artificially props up earnings.transformernews+1

The Data Center Bust

According to historian Margaret O’Mara and business analyst Shane Greenstein, AI data centers—many purpose‑built for model training using GPUs—are highly specialized and often remote from urban demand. These centers might last only 3–5 years and have little reuse value outside AI or crypto mining. If capital inflows freeze, thousands of megawatts of compute could become stranded assets, comparable to the empty fiber networks after the dot‑com collapse.transformernews

Economic Impact

The International Monetary Fund estimates roughly a third of current US GDP growth depends on AI-related investment. If the bubble bursts, consumption could fall from loss of “AI wealth effects,” dragging global markets into recession. Analysts at Transformer News liken it to Britain’s 1840s railway mania: vast sums invested in technology that ultimately enriched the future economy—at the cost of investors’ ruin.globalcapital+2

Consequences for Jobs and Technology

For the workforce, the crash would begin with mass layoffs across the tech sector and data‑center construction, followed by second‑order layoffs in software, marketing, and education technology. However, as with the post‑dot‑com era, redundant talent and abandoned infrastructure could later fuel a new, leaner AI industry based on sustainable business models.reddit+2

Systemic and Political Risks

While the contagion risk is smaller than subprime mortgages in 2008, debt-financed AI expansion—Oracle’s $100 billion borrowing plan with OpenAI being one example—creates vulnerability for lenders and investors. Should a major firm default, cascading insolvencies could ripple through the supply chain, forcing governments to intervene. Some analysts expect this crash would prompt stricter AI regulation and financing guardrails reminiscent of those enacted after the Great Depression.transformernews

Long-Term View

If artificial general intelligence (AGI) does eventually deliver major productivity gains, early investments may appear prescient. But if not, a 2020s AI crash would leave disused GPU campuses and massive debt—an exuberant experiment that accelerated technological progress at ruinous human cost.unherd+2

Which industries would collapse first in an AI crash

In the event of an AI crash, several sectors would be hit first and hardest — especially those that have overexpanded based on speculative expectations of AI-driven profits or infrastructure demand. The collapse would cascade through high-capex industries, ripple across financial services, and disrupt employment-dependent consumer sectors.

Semiconductor and GPU Manufacturing

The semiconductor industry would be the first to collapse due to its heavy dependence on AI demand. Data center GPUs currently drive over 90% of Nvidia’s server revenue, and the entire sector’s value nearly doubled between 2024 and 2025 based on AI compute growth forecasts. If hyperscaler demand dries up, the oversupply of GPUs, high-bandwidth memory (HBM), and AI ASICs could cause a price crash similar to the telecom equipment bust in 2002. Chip makers and startups like Groq, Cerebras, and Tenstorrent—heavily leveraged to AI workloads—would struggle to survive the sudden capital freeze.digitalisationworld

Cloud and Data Center Infrastructure

AI-heavy cloud providers such as Microsoft Azure, AWS, Google Cloud, and Oracle Cloud would see massive write-downs in data center assets. Overbuilt hyperscale and sovereign AI campuses could become stranded investments worth billions as training workloads decline and electricity costs remain high. This dynamic mirrors the way dark fiber networks from the 1990s dot-com era lay idle for years after overinvestment.digitalisationworld

Digital Advertising and Marketing

The advertising and media sector—already experiencing erosion due to AI‑generated content—would decline abruptly. Companies like WPP have already lost 50% of their stock value in 2025 due to automated ad-generation technologies cannibalizing human creative work. As AI content generation saturates the market, profit margins in marketing, online publishing, and synthetic media platforms like Shutterstock and Wix could collapse.ainvest

Financial and Staffing Services

Financial services and staffing firms are another early casualty. AI has already automated large portions of transaction processing, compliance, and manual recruitment. Firms such as ManpowerGroup and Robert Half have reportedly seen 30–50% market value declines due to these pressures. In an AI crash, their exposure to risk-laden corporate clients and shrinking demand for human labor matching would deepen losses, while regulators tighten AI governance in compliance-heavy finance.ainvest

Transportation and Logistics

The transportation and logistics sector, closely tied to AI investment through autonomous systems, faces structural weakness. Millions of driving and delivery jobs could disappear due to automation, but the firms funding autonomous fleets—such as Tesla Freight and Aurora Innovations—would hemorrhage cash if capital dries up before widespread profitability. AI‑powered routing and warehouse systems could be written down as expensive overcapacity.ainvest

Secondary Collapse: Retail and Customer Support

Finally, customer‑facing retail and support sectors would be heavily affected. With AI chatbots now handling about 80% of common queries, these labor markets are already contracting. A market shock would worsen layoffs while eroding spending power, compounding the downturn.ainvest

Summary Table

IndustryCollapse TriggerFirst-Order ImpactExample Companies Affected
SemiconductorsGPU oversupply, hyperscaler pullbackRevenue crashes, fab overcapacityNvidia, AMD, TSMC, Cerebras digitalisationworld
Cloud & Data CentersHalt in AI training spendIdle assets, megacenter write-downsMicrosoft, AWS, Oracle Cloud digitalisationworld
Advertising & MediaAutomated ad content cannibalizationLoss of billable creative workWPP, Shutterstock, Wix ainvest
Financial & StaffingJob automation, credit exposureRapid fall in client demand, defaultsManpowerGroup, Robert Half ainvest
TransportationDelay in autonomous projectsJob losses, asset devaluationTesla Freight, Aurora, Waymo ainvest
Retail & SupportCustomer service automationWidespread workforce reductionShopify, Zendesk ainvest

In short, the first phase of an AI crash would decimate GPU suppliers and infrastructure providers, followed by cascading losses in services and labor markets that relied on sustained AI adoption and speculative investor optimism.

The Hyperscalers who would be most affected in an AI crash

The hyperscalers most severely affected by an AI crash would be those that have sunk the largest capital into AI‑specific data center expansion without commensurate returns—primarily Microsoft, Amazon (AWS), Alphabet (Google Cloud), Meta, Oracle, and to a lesser extent GPU‑specialist partners like CoreWeave and Crusoe Energy Systems. These companies are deep in an investment cycle driven by trillion‑dollar valuations and multi‑gigawatt data center commitments, meaning a downturn would cripple balance sheets, strand assets, and force major write‑downs.

Microsoft

Microsoft is the hyperscaler most exposed to an AI collapse. It has committed $80 billion for fiscal 2025 to AI‑optimized data centers, largely to support OpenAI’s model training workloads on Azure. Over half this investment is in the U.S., focusing on high‑power, GPU‑dense facilities that may become stranded if demand for model training plunges. The company also co‑leads multi‑partner mega‑projects like Stargate, a $500 billion AI campus venture involving SoftBank and Oracle.ft+1

Amazon Web Services (AWS)

AWS is next in risk magnitude, with $86 billion in active AI infrastructure commitments spanning Indiana, Virginia, and Frankfurt. Many of its new campuses are dedicated to AI‑as‑a‑Service workloads and custom silicon (Trainium, Inferentia). If model‑training customers scale back, AWS faces overcapacity in power‑hungry clusters designed for sustained maximum utilization. Analysts warn that such facilities are difficult to repurpose for general cloud usage due to 10× higher rack power and cooling loads.thenetworkinstallers+1

Alphabet (Google Cloud)

Google’s parent company, Alphabet, has pledged around $75 billion in AI infrastructure spending in 2025 alone—heavily concentrated in server farms for Gemini model operations. The company’s shift to AI‑dense GPU clusters has already required ripping and rebuilding sites mid‑construction. In a crash, Alphabet’s reliance on advertising to subsidize capex would expose it to compounding financial stress.ft+1

Meta

Meta’s risk is driven by scale and ambition rather than cloud dependency. The company is investing $60–65 billion into a network of AI superclusters, including a 2 GW data center in Louisiana designed purely for model training. Mark Zuckerberg’s goal to reach “superintelligence” entails constant full‑load operation—meaning unused compute in a recession would yield enormous sunk‑cost losses.hanwhadatacenters+1

Oracle

Oracle, a late entrant to the hyperscaler race, ranks as the fourth largest hyperscaler and has become deeply tied to OpenAI’s infrastructure build. It is reportedly providing 400,000 Nvidia GPUs—worth about $40 billion—for OpenAI’s Texas and UAE campuses under the Stargate project. Oracle’s dependency on a few high‑risk customers makes it vulnerable to disproportionate collapse if those clients cut capital expenditures.ft

GPU Cloud Specialists (CoreWeave, Crusoe, Lambda)

Although smaller in scale, CoreWeave, Crusoe Energy Systems, and Lambda Labs face acute financial danger. Each is highly leveraged to GPU leasing economics that assume near‑continuous utilization. A pause in large‑model training would break their cash flow structure, causing defaults among the so‑called “neo‑cloud” providers.hanwhadatacenters

Comparative Exposure Overview

HyperscalerEstimated 2025 AI CapexPrimary Risk ChannelVulnerability in a Crash
Microsoft$80 billionOverexposure to OpenAI workloadsExtremely high hanwhadatacenters
Amazon (AWS)$86 billionIdle compute, train‑specific sitesVery high thenetworkinstallers
Alphabet$75 billionAdvertising decline + AI site overbuildHigh thenetworkinstallers
Meta$60–65 billionPure AI data center utilization riskHigh hanwhadatacenters
Oracle$40 billion (via Stargate)Concentrated tenant risk (OpenAI)Very high ft
CoreWeave / Crusoe / Lambda$10–15 billion rangeDebt leverage and GPU lease dependenceExtreme hanwhadatacenters

Summary

A sustained AI market collapse would first hit these hyperscalers through GPU underutilization, stranded data‑center capacity, and debt‑heavy infrastructure financing. Microsoft, Oracle, and Meta would face the most immediate write‑downs given their recent megaproject commitments. Amazon and Google, while financially stronger, would absorb heavy revenue compression. Specialized GPU‑cloud providers—CoreWeave, Crusoe, and Lambda—could fail outright due to funding constraints and dependence on short‑term AI demand surges.thenetworkinstallers+2

AI Hyperscalers

What Are Hyperscalers?

Hyperscalers are the giants of cloud computing — companies that design, build, and operate massive, global-scale data center infrastructures capable of scaling horizontally almost without limit. The term “hyperscale” refers to architectures that can efficiently handle extremely large and rapidly growing workloads, including AI training, inference, and data processing.

Examples:

  • Amazon Web Services (AWS)
  • Microsoft Azure
  • Google Cloud Platform (GCP)
  • Alibaba Cloud
  • Oracle Cloud Infrastructure (OCI) (smaller but sometimes included)

These companies have multi-billion-dollar capital expenditures (CAPEX) in data centers, networking, and custom hardware (e.g., AWS Inferentia, Google TPU, Azure Maia).


What Are Traditional AI Compute Cloud Providers?

These are smaller or more specialized providers that focus specifically on AI workloads—especially training and fine-tuning large models—often offering GPU or accelerator access, high-bandwidth networking, and lower latency setups.

Examples:

  • CoreWeave
  • Lambda Labs (Lambda Cloud)
  • Vast.ai
  • RunPod, Paperspace, FluidStack, etc.

They often use NVIDIA GPUs (H100, A100, RTX 4090, etc.) and emphasize cost-efficiency, flexibility, or performance for ML engineers and researchers.


Key Comparison: Hyperscalers vs. AI Compute Cloud Providers

DimensionHyperscalersAI Compute Cloud Providers
Scale & ReachGlobal, thousands of data centers; integrated with enterprise ecosystemsSmaller scale, often regional or specialized
HardwareCustom silicon (TPUs, Inferentia, Trainium) + NVIDIA GPUsAlmost entirely NVIDIA GPU-based
Pricing ModelComplex, pay-as-you-go; optimized for enterprise commitments (e.g., reserved instances, savings plans)Simpler, often cheaper hourly or spot pricing; more transparent GPU pricing
Performance FocusBalance of general-purpose and AI-specific workloadsFocused almost entirely on deep learning performance
NetworkingProprietary, very high bandwidth and reliabilityCan vary; some are optimized for high interconnect (e.g., NVLink, InfiniBand)
Ecosystem & IntegrationTight integration with DevOps, databases, storage, analytics, security, identityLightweight—focused mainly on compute, with minimal frills
FlexibilityBroad platform: supports everything from web hosting to LLM trainingNarrow focus: mainly training, inference, and fine-tuning workloads
Target UsersLarge enterprises, governments, global-scale AI projectsStartups, researchers, model trainers, boutique AI labs
Innovation CycleSlower—must maintain enterprise stabilityFaster—can pivot quickly to support new GPUs or AI frameworks
Example Use CaseMulti-cloud enterprise AI strategy integrating ERP + data lakes + model deploymentCost-effective fine-tuning or inference serving for startups

How They’re Converging

There’s an emerging hybrid trend:

  • Hyperscalers are building specialized AI infrastructure (e.g., NVIDIA DGX Cloud partnerships, Microsoft–OpenAI collaboration, Google DeepMind integration).
  • Smaller AI compute providers are adding orchestration layers (e.g., API management, distributed training schedulers) to resemble mini hyperscalers.

Some mid-tier players like Oracle, IBM Cloud, and Tencent Cloud are positioning themselves between these two worlds — offering both enterprise reliability and AI specialization.


In Summary

  • Hyperscalers = scale, reliability, and enterprise integration; ideal for end-to-end AI systems.
  • AI Compute Clouds = agility, affordability, and specialization; ideal for developers or teams training and serving models directly.

Would you like me to include a comparison of cost-performance ratios for AI workloads (e.g., GPT model training on A100s vs TPUs vs custom silicon)? That can show where each platform has an advantage.

Some Emergent Hyperscalers

  • Nscale — a vertically-integrated AI data-centre / GPU cloud scale-play (rapidly expanding via large GPU supply deals and data-centre buildouts). nscale.com+1
  • CoreWeave — GPU-first cloud operator focused on ML/graphics workloads; positions itself as lower-cost, fast access to new NVIDIA hardware. CoreWeave
  • Lambda Labs (Lambda Cloud) — ML-first cloud and appliances for researchers and enterprises; early to H100/HGX and sells private clusters. lambda.ai
  • Vast.ai — a marketplace/aggregator that connects buyers to third-party GPU providers for low-cost, on-demand GPU rentals. Vast AI
  • RunPod — developer-friendly, pay-as-you-go GPU pods and serverless inference/fine-tuning; emphasizes per-second billing and broad GPU options. Runpod+1
  • Paperspace (Gradient / DigitalOcean partnership) — easy UX for ML workflows, managed notebook/cluster services; targets researchers and smaller teams. paperspace.com+1
  • FluidStack — builds and operates large GPU clusters / AI infrastructure for enterprises; touts low cost and large cluster deliveries (recent colocation/HPC deals). fluidstack.io+1
  • Nebius — full-stack AI cloud aiming at hyperscale enterprise contracts (recent large Microsoft capacity agreements and public listing activity). Nebius+1
  • Iris Energy (IREN) — originally a bitcoin miner now pivoting to GPU colocation / AI cloud (scaling GPU fleet and data-centre capacity). Data Center Dynamics+1

Comparison table

ProviderBusiness modelTypical hardwarePricing modelTypical customersNotable strength / recent news
NscaleBuild-own-operate AI data centres + sell GPU capacityNVIDIA GB/B-class & other datacentre GPUs (mass GPU allocations)Enterprise deals / reservations + cloud accessLarge enterprises, cloud partnersLarge GPU supply deals with Microsoft; fast expansion. nscale.com+1
CoreWeavePurpose-built GPU cloud operatorLatest NVIDIA GPUs (A100/H100, etc.)On-demand, reserved; claims competitive price/perfML teams, render farms, game studiosML-focused architecture, early access to new GPUs. CoreWeave
Lambda LabsML-focused cloud + private on-prem appliancesA100/H100/HGX offerings; turnkey clustersOn-demand + private cluster contractsResearchers, enterprises needing private clustersEarly H100/HGX on-demand; private “caged” clusters. lambda.ai
Vast.aiMarketplace / broker — spot / community & datacenter providersVaries (user-supplied & datacenter GPUs)Market pricing / spot-style auctions — often cheapestHobbyists, researchers, cost-sensitive teamsHighly price-competitive via marketplace model. Vast AI
RunPodOn-demand pods, serverless inference & dev UXWide range: H100, A100, RTX 40xx, etc.Per-second billing, pay-as-you-goIndividual devs, startups, ML teams experimentingPer-second billing, fast spin-up, developer tooling. Runpod+1
PaperspaceManaged ML platform (Gradient), notebooks, VMsH100/A100 and consumer GPUs via partnersSubscription tiers + hourly GPU ratesStudents, researchers, startupsEasiest UX for notebooks + learning resources. paperspace.com+1
FluidStackLarge-scale cluster operator & managed AI infraLarge fleets of datacenter GPUsCustom / enterprise pricing (claims big cost savings)Labs, enterprises training frontier modelsBig colocation/HPC deals; expanding capacity via mining/colocation partners. fluidstack.io+1
NebiusFull-stack AI cloud (aims at hyperscale)NVIDIA datacenter GPUs (scale focus)Enterprise contracts / cloud offeringsEnterprises chasing hyperscale AI capacityLarge multi-year capacity deals (e.g., Microsoft). Nebius+1
Iris Energy (IREN)Data-centre owner / ex-miner pivoting to AI cloudBuilding GPU capacity (B300/GB300, etc.) alongside ASICsColocation + AI cloud contracts / asset monetisationEnterprises, HPC customers; also investor communityPivot from bitcoin mining to GPU/AI colocation and cloud. Data Center Dynamics+1

Practical differences that matter when you pick one

  1. Business model & reliability
    • Marketplace providers (Vast.ai) are great for cheap, experimental runs but carry variability in host reliability and support. Vast AI
    • Dedicated GPU clouds (CoreWeave, Lambda, FluidStack, Nebius, Nscale, Iris) provide more predictable SLAs and engineering support for production/federated training. nscale.com+4CoreWeave+4lambda.ai+4
  2. Access to bleeding-edge hardware
    • Lambda and CoreWeave emphasize fast access to the newest NVIDIA stacks (H100, HGX/B200, etc.). Good if you need peak FLOPS. lambda.ai+1
  3. Pricing predictability vs lowest cost
    • RunPod / Vast.ai / Paperspace often win on price for small / short jobs (per-second billing, spot marketplaces). For large, sustained runs, enterprise contracts with Nebius / Nscale / FluidStack or reserved capacity at Lambda/CoreWeave may be more cost-efficient. Runpod+2Vast AI+2
  4. Scale & strategic partnerships
    • Nebius and Nscale are scaling via huge supply agreements and data-centre builds aimed at enterprise contracts (Microsoft news for both). That makes them candidates if you need tens of thousands of GPUs or long-term buying power. Reuters+1
  5. Operational maturity & support
    • CoreWeave, Lambda, and Paperspace have mature dev experience / tooling and are used widely by ML teams. FluidStack and the miner pivots (Iris Energy) are moving fast into HPC/colocation and can offer very large capacity but may require more custom engagement. irisenergy.gcs-web.com+4CoreWeave+4lambda.ai+4

Which should you pick for common scenarios?

Managed notebooks, easy onboarding: Paperspace (Gradient). paperspace.com

Experimentation / cheapest short runs: Vast.ai or RunPod. Vast AI+1

Research / fast access to newest GPUs: Lambda or CoreWeave. lambda.ai+1

Large-scale, enterprise training / long contracts: Nebius, Nscale, FluidStack, or Iris (colocation + committed capacity). Data Center Dynamics+3Reuters+3Reuters+3

Oracle Cloud Infrastructure (OCI) vs Nscale (as of October 19, 2025). I’ll cover: company profiles, business models, core products & hardware, scale & geography, networking/storage, pricing & commercial approach, enterprise features & ecosystem, strengths/weaknesses, risk factors, and recommended fit / use cases. I’ll call out the most important, source-backed facts inline so you can follow up.


OCI vs Nscale

OCI (Oracle Cloud Infrastructure) — Enterprise-grade public cloud from Oracle with a full-stack platform (150+ services), strong emphasis on bare-metal GPU instances, low-latency RDMA networking, and purpose-built AI infrastructure (OCI Supercluster) for very large-scale model training and enterprise workloads. Oracle+1

Nscale — A rapidly-scaling, GPU-focused AI infrastructure company and data-center operator (spinout from mining heritage) that is building hyperscale GPU campuses and selling large blocks of GPU capacity to hyperscalers and cloud partners — recently announced a major multi-year / multi-100k GPU deal with Microsoft and is positioning itself as an AI hyperscaler engine. Reuters+1


1) Business model & target customers

  • OCI: Full public cloud operator (IaaS + PaaS + SaaS) selling compute, storage, networking, database, AI services, and enterprise apps to enterprises, large ISVs, governments, and cloud-native teams. OCI competes with AWS/Azure/GCP on breadth and with a particular push on enterprise and large AI workloads. Oracle+1
  • Nscale: Data-centre owner / AI infrastructure supplier that builds, owns, and operates GPU campuses and sells/leases capacity (colocation, wholesale blocks, and managed deployments) to hyperscalers and strategic partners (e.g., Microsoft). Nscale’s customers are large cloud/hyperscale buyers and enterprises needing multi-thousand-GPU scale. Reuters+1

Takeaway: OCI is a full cloud platform for a wide range of workloads; Nscale is focused on delivering raw GPU capacity and hyperscale AI facilities to large customers and cloud partners.


2) Scale, footprint & recent milestones

  • OCI: Global cloud regions and an enterprise-grade service footprint; OCI advertises support for Supercluster-scale deployments (hundreds of thousands of accelerators per cluster in design) and already offers H100/L40S/A100/AMD MI300X instance families. OCI emphasizes multi-region enterprise availability and managed services. Oracle+1
  • Nscale: Growing extremely fast — public reports (October 2025) show Nscale signing an expanded agreement to supply roughly ~200,000 NVIDIA GB300 GPUs to Microsoft across data centers in Europe and the U.S., plus earlier multi-year deals and very large funding rounds to build GW-scale campuses. This positions Nscale as a major new source of hyperscale GPU capacity. (news: Oct 15–17, 2025). Reuters+1

Takeaway: OCI provides a mature, globally distributed cloud platform; Nscale is an emergent, fast-growing specialist whose business is specifically bulking up GPU supply and datacenter capacity for hyperscalers.


3) Hardware & AI infrastructure

  • OCI: Provides bare-metal GPU instances (claimed as unique among majors), broad GPU families (NVIDIA H100, A100, L40S, GB200/B200 variants, AMD MI300X), and specialized offerings like the OCI Supercluster (designed to scale to many tens of thousands of accelerators with ultralow-latency RDMA networking). OCI highlights very large local storage per node for checkpointing and RDMA networking with microsecond-level latencies. Oracle+1
  • Nscale: Focused on the latest hyperscaler-class silicon (publicly reported deal to supply NVIDIA GB300 / GB-class chips at scale) and on designing campuses with the power/networking needed to host very high-density GPU racks. Nscale’s value prop is enabling massive, contiguous blocks of the newest accelerators for customers who need scale. nscale.com+1

Takeaway: OCI offers a broad, immediately available catalogue of GPU instances inside a full cloud stack (VMs, bare-metal, networking, storage). Nscale promises extremely large, tightly-engineered deployments of the very latest chips (built around wholesale supply deals) — ideal when you need huge contiguous blocks of identical GPUs.


4) Networking, storage, and cluster capabilities

  • OCI: Emphasizes ultrafast RDMA cluster networking (very low latency), substantial local NVMe capacity per GPU node for checkpointing and training, and integrated high-performance block/file/object storage for distributed training. OCI’s Supercluster design targets the network and storage patterns of large-scale ML training. Oracle+1
  • Nscale: As a data-centre builder, Nscale’s engineering focus is on supplying enough power, cooling, and high-bandwidth infrastructure to run dense GPU deployments at hyperscale. Exact publicly-documented RDMA/InfiniBand topology details will depend on the specific deployment/sale (e.g., Microsoft campus). Data Center Dynamics+1

Takeaway: OCI is explicit about turnkey low-latency cluster networking and storage integrated into a full cloud. Nscale provides the raw site-level infrastructure (power, capacity, racks) which customers — or partner hyperscalers — will integrate with their preferred networking and orchestration stacks.


5) Pricing & commercial model

  • OCI: Typical cloud commercial models (pay-as-you-go VMs, bare-metal by the hour, reserved/committed pricing, enterprise contracts). Oracle often positions OCI GPU VMs/bare metal as price-competitive vs AWS/Azure for GPU workloads and offers enterprise purchasing options. Exact on-demand vs reserved comparisons depend on instance type and region. Oracle+1
  • Nscale: Business-to-business, large-block commercial contracts (multi-year supply/colocation agreements, reserved capacity). Pricing is negotiated at scale — Nscale’s publicized Microsoft deal is a wholesale/supply/managed capacity arrangement rather than per-hour public cloud list pricing. For organizations that need thousands of GPUs, Nscale will typically offer custom commercial terms. Reuters+1

Takeaway: OCI is priced and packaged for on-demand to enterprise-committed cloud customers; Nscale sells large committed capacity and colocation — better for multi-year, high-volume needs where custom pricing and term structure matter.


6) Ecosystem, integrations & managed services

  • OCI: Deep integration with Oracle’s enterprise software (databases, Fusion apps), full platform services (Kubernetes, observability, security), and AI developer tooling. OCI customers benefit from a full-stack cloud ecosystem and enterprise SLAs. Oracle
  • Nscale: Ecosystem strategy centers on partnerships with hyperscalers and OEMs (e.g., Dell involvement in recent deals) and with chip vendors (NVIDIA). Nscale’s role is primarily infrastructure supply; customers will typically integrate their own orchestration and cloud stack or rely on partner hyperscalers for higher-level platform services. nscale.com+1

Takeaway: OCI is a one-stop cloud platform. Nscale is infrastructure-first and will rely on partner ecosystems for platform and application services.


7) Strengths & weaknesses (practical lens)

OCI strengths

  • Full cloud platform with enterprise services and AI-optimized bare-metal GPUs. Oracle+1
  • Designed for low-latency distributed training at scale (Supercluster, RDMA). Oracle
  • Broad GPU/accelerator families (NVIDIA + AMD options). Oracle

OCI weaknesses / risks

  • Market share and ecosystem mindshare still behind AWS/Azure/GCP in many regions; vendor lock-in concerns for Oracle-centric enterprises.

Nscale strengths

  • Ability to deliver huge contiguous GPU volumes (100k–200k+ scale) quickly via supply contracts and purpose-built campuses — attractive to hyperscalers and large cloud partners. Recent publicized Microsoft deal is a major signal. Reuters+1
  • Investor & OEM backing that accelerates buildout (Dell, Nokia, others reported). nscale.com

Nscale weaknesses / risks

  • New entrant: rapid growth introduces execution risk (power availability, construction timelines, operational maturity). Big deals depend on multi-year delivery and integration with hyperscaler networks. Financial Times+1

8) Risk & due diligence items

If you’re choosing between them (or evaluating using both), check:

  1. Availability & timeline: OCI instances are available now; Nscale’s large campuses are in active buildout — confirm delivery timelines for GPU blocks you plan to consume. (Nscale’s big deal timelines: deliveries beginning next year in some facilities per press). TechCrunch+1
  2. Network topology & RDMA: If you need low-latency multi-node training, verify the network fabric (OCI documents RDMA / microsecond latencies; for Nscale verify whether customers get InfiniBand/RDMA within the purchased footprint). Oracle+1
  3. Commercial terms: Nscale = custom wholesale/colocation contracts; OCI = public cloud, enterprise agreements and committed-use discounts. Get TCO comparisons for sustained runs. Oracle+1
  4. Operational support & SLAs: OCI provides full cloud SLAs and platform support; Nscale will likely provide data-centre/ops SLAs but may require integration effort depending on the buyer/partner model. Oracle+1

9) Who should pick which?

  • Pick OCI if you want: Immediate, production-ready cloud with GPU bare-metal/VM options, integrated platform services (K8s, databases, monitoring), and predictable on-demand/reserved pricing — especially if you value managed services and global regions. Oracle+1
  • Pick Nscale if you want: Multi-thousand to multi-hundred-thousand contiguous GPU capacity under a negotiated multi-year/colocation deal (hyperscaler-scale training, or to supply a cloud product), and you can accept a bespoke onboarding/ops model in exchange for potentially lower per-GPU cost at massive scale. (Recent Microsoft deal signals Nscale’s focus and capability). Reuters+1

Short recommendation & practical next steps

  • If you’re an enterprise or team needing immediate GPU clusters with full cloud services -> evaluate OCI’s GPU bare-metal and Supercluster options and request price/perf for your model. Use OCI if you want plug-and-play with enterprise services. Oracle+1
  • If you are planning hyperscale capacity (thousands→100k GPUs) and want to reduce per-GPU cost through long-term committed deployments -> open commercial discussions with Nscale (and other infrastructure suppliers) now; verify delivery schedule, power, networking fabric, and integration model. Reuters+1