Loading live status…
Loading live status…
LinkedIn had trouble on 13 August 2026. Its status page filed the incident already resolved, with zero duration, no components attached, and an impact level that leaves the indicator green — eighteen hours after the fact. Here is what that does to every monitor pointed at it, including ours.
The fastest answer is the LinkedIn status page on isuptime, which reads LinkedIn's own feed every few minutes and says what it currently reports.
The more useful answer is that for LinkedIn, specifically, that reading is weaker evidence than it is for almost any other service on this site. Not because the feed is broken — it answers every request in a couple of hundred milliseconds — but because of how LinkedIn uses it. On 13 August 2026 LinkedIn had a real problem, published a real incident about it, and every monitor in the world pointed at that page stayed green from start to finish.
Here is exactly how that happened, because the mechanism is worth understanding and it is not unique to LinkedIn.
LinkedIn publishes through Statuspage at linkedin-status.com, which exposes the standard JSON API. This is the incident, straight from /api/v2/incidents.json:
{
"name": "LinkedIn.com Issue",
"impact": "none",
"status": "resolved",
"created_at": "2026-08-13T14:30:00.000-07:00",
"resolved_at": "2026-08-13T14:30:00.000-07:00",
"monitoring_at": null,
"components": []
}
With a single update attached:
2026-08-14T08:47:03.021-07:00 | resolved |
"Some members may have experienced trouble accessing LinkedIn.
This has now been resolved."
Read those two blocks together and four separate things are happening, each of which independently defeats a monitor.
created_at and resolved_at are the same timestamp. The incident has a duration of zero seconds. There was never a moment when a poller could have caught it open, because as a record it was never open — it was born resolved.
The only update was posted 18 hours and 17 minutes after the incident's own timestamp. The entry was backdated. LinkedIn was not narrating a live event; it was writing a note about one that had finished the previous evening. The tense gives it away — "may have experienced", "has now been resolved". Nothing was ever published during.
components is empty. No component was attached, so none of the fifteen things LinkedIn lists — LinkedIn.com, Jobs, Recruiter, Sales Navigator, Campaign Manager and the rest — ever showed anything but operational.
impact is "none". This is the one that matters most, and it needs its own section.
impact: "none" does to the green dotStatuspage derives the top-level status.indicator — the field behind "All Systems Operational" — from component states and from the impact of any currently open incidents. The impact scale is none, minor, major, critical. An incident filed at none does not move the indicator. It is the level reserved for informational notices, and it is doing exactly what it is designed to do.
So the aggregate feed said this, without interruption, before during and after:
{"indicator": "none", "description": "All Systems Operational"}
Most status aggregators — this one included — read that indicator. It is the field the whole format is built around, it is what the coloured dot means, and for the great majority of providers it is a fair summary. Point it at an incident that is zero seconds long, backdated by eighteen hours, attached to no component and marked as having no impact, and it has nothing to report. There is no bug here to fix. The feed answered honestly; the honest answer was green.
This is the difference between a status page and a measurement, in one incident. A status page is a publication. Somebody decides what goes in it, at what severity, and when.
The pattern is not a one-off. Across all of 2026, LinkedIn has published exactly three incidents:
| Date | Impact | Would it move the indicator? |
|---|---|---|
| 28 Mar 2026 | minor |
Yes |
| 21 May 2026 | none |
No |
| 13 Aug 2026 | none |
No |
Three incidents in nearly eight months, two of them at an impact level that is invisible to every monitor reading the aggregate. For a platform with roughly a billion registered members, that is not a description of how often LinkedIn has trouble. It is a description of LinkedIn's publishing threshold.
Widen the window and the shape holds. Of the last 50 incidents on the page — going back to 2024 — 31 are minor, 9 critical, 6 major and 4 none. The median time from created_at to resolved_at is 77 minutes. LinkedIn does post substantial incidents when it has them, which is worth saying plainly. But its bar for opening one at all is high, and when it clears that bar late it backfills rather than narrates.
There is a second data point from the same month. Third-party trackers logged a surge of user reports around 13:36 ET on 10 August 2026. LinkedIn's incident history has nothing for that date at any impact level. Report-volume spikes are noisy evidence and a surge is not proof of an outage — but the asymmetry is the point: one of these two events produced a record eighteen hours late, and the other produced none at all.
Three things, in order of how much they are worth.
Check the incident feed, not the indicator. For LinkedIn the aggregate dot is close to uninformative. The incident list is where the signal is, and it is a different endpoint. Our LinkedIn page shows both — the answer at the top comes from the indicator, and the incident list below it is fetched separately, which is why an entry can appear there while the headline still reads operational. When those two disagree, believe the list.
Give the feed a day before you trust its silence. The useful lesson from 13 August is not that LinkedIn's status page is wrong. It is that its status page is slow, and specifically that it can be slow in a way that never leaves a trace at the time. An empty incident list means "nothing has been published yet", which for this provider is a meaningfully weaker claim than "nothing has happened".
Ask other people. This is the case the community reports panel exists for. When the provider's own feed is structurally unable to tell you that something is happening right now, the only real-time signal available is other users. A hundred people reporting trouble in the last hour is not a measurement either, but it is independent of the publication, and independence is the whole value.
And the ordinary diagnostic still applies first: if LinkedIn fails for you while the feed is green and nobody else is reporting anything, the likeliest explanations are local — a stale session, a corporate network filter, an extension, or a rate limit on your own account. LinkedIn is aggressive about throttling automated-looking traffic, and a throttle looks exactly like an outage from the inside. None of that will ever appear on a status page, because from the provider's side nothing is wrong.
LinkedIn is an unusually clean example, not a special case. Every mechanism in that JSON is available to every provider on Statuspage, and the incentives that produce it are the same everywhere: an incident is a public record, severity is a judgement call made by the company being described, and nobody is obliged to publish in real time.
What you can do about it is decide, per provider, how much a green dot is worth. For GitHub, which posts component-level detail within minutes and narrates incidents as they unfold, green is strong evidence. For LinkedIn it is close to no evidence at all — it tells you nothing has been published, which on this page's own record can lag reality by most of a day.
That per-provider calibration is the actual skill. It is also why reading the shape of an outage from outside is worth learning: when the publication is late, the symptoms are all you have.
You can watch LinkedIn's live status here, see how the checking works, and get an alert when its state changes — with the caveat this whole post is about, that for this provider the state changing is a lagging indicator.
Sources:
/api/v2/incidents.json, /api/v2/summary.json) on 28 August 2026Checked continuously against each provider's own status feed.