Is JumpCloud down?

Last checked 1m ago
Current status
JumpCloud is up

No incidents right now.

Official status page: http://status.jumpcloud.com · Polled every 5 minutes · 84 components tracked

JumpCloud is operational right now. Last checked 1m ago; the most recent incident resolved 36d ago.

Real-time JumpCloud status, recent outages, and incident history — pulled directly from JumpCloud's official status page at http://status.jumpcloud.com every 5 minutes. Pingoru tracks 84 JumpCloud services and has captured 4 incidents in the last 90 days (99.95% uptime). Get email, Slack, Discord, or webhook alerts the moment JumpCloud reports a new incident — free for 5 monitors, no credit card.

Users who monitor JumpCloud also follow these Identity Management services: Dropbox Sign Ping Identity MobileIron GBG Onfido Persona Identities Thycotic Beyond Identity Ekata TeleSign View all 6,000+ providers
JumpCloud uptime 99.95% uptime · past 90 days
Mon Wed Fri
MarAprMayJun
Less More

Recent outages & incidents

Past 90 days
  1. Resolved 1h 46m
    Started May 08, 2026, 06:41 AM UTC · Resolved May 08, 2026, 08:28 AM UTC
    Admin Console
    Timeline · 4 updates
    • investigating · May 08, 2026, 06:41 AM UTC

      We are currently investigating delays or timeouts loading the devices page in the admin console. We are investigating the cause of the issues currently, and will provide an update within one hour.

    • identified · May 08, 2026, 06:44 AM UTC

      The issue has been identified and the team is working on the fix.

    • monitoring · May 08, 2026, 06:51 AM UTC

      A fix has been implemented. We are currently monitoring the results.

    • resolved · May 08, 2026, 08:28 AM UTC

      This incident has been resolved.

    Latest: This incident has been resolved.

  2. Resolved 1h 53m
    Started Apr 28, 2026, 08:01 AM UTC · Resolved Apr 28, 2026, 09:55 AM UTC
    Agent
    Timeline · 4 updates
    • investigating · Apr 28, 2026, 08:01 AM UTC

      We are currently aware of reports with agent Installation failing, this is affecting MacOS, Windows and Linux. We are investigating the cause of the issues currently, and will provide an update within one hour.

    • identified · Apr 28, 2026, 08:57 AM UTC

      The issue has been identified and a fix will be implemented soon.

    • monitoring · Apr 28, 2026, 09:00 AM UTC

      A fix has been implemented, and Agent installations should now be functioning as expected. Our team is actively monitoring the situation to ensure continued stability.

    • resolved · Apr 28, 2026, 09:55 AM UTC

      The incident has been resolved.

    Latest: The incident has been resolved.

  3. Resolved 47m
    Started Apr 02, 2026, 05:08 PM UTC · Resolved Apr 02, 2026, 05:55 PM UTC
    LDAP
    Timeline · 4 updates
    • investigating · Apr 02, 2026, 05:08 PM UTC

      We are currently investigating a delay in LDAP directory synchronizations. While updates are processing, changes to user attributes and passwords may take longer than expected to propagate. The team is actively working to increase processing capacity and accelerate synchronizations.

    • identified · Apr 02, 2026, 05:16 PM UTC

      The issue has been identified and a fix is being implemented.

    • monitoring · Apr 02, 2026, 05:23 PM UTC

      A fix has been implemented and we are monitoring the results.

    • resolved · Apr 02, 2026, 05:55 PM UTC

      This incident has been resolved.

    Latest: This incident has been resolved.

  4. Resolved 5h 52m
    Started Mar 31, 2026, 12:32 AM UTC · Resolved Mar 31, 2026, 06:24 AM UTC
    Admin Console
    Timeline · 6 updates
    • identified · Mar 31, 2026, 12:32 AM UTC

      JumpCloud is currently experiencing dispatch delays for core Directory services. Administrators may experience delays updating associations for users, groups, policies, directories, and commands. We have identified the cause of the issue and are actively implementing a fix.

    • identified · Mar 31, 2026, 02:38 AM UTC

      We have made progress in reducing the backlog affecting Directory services and are continuing to work through the remaining queue. Administrators may still experience delays when updating associations for users, groups, policies, directories, and commands. The team is actively implementing additional changes to increase processing capacity and accelerate resolution. We will provide further updates in one hour.

    • identified · Mar 31, 2026, 03:42 AM UTC

      The backlog affecting Directory services has been significantly reduced and continues to decrease. Administrators may still experience delays when updating associations for users, groups, policies, directories, and commands. The team continues to work on additional changes to accelerate processing. We will provide further updates in an hour.

    • monitoring · Mar 31, 2026, 05:00 AM UTC

      The backlog affecting Directory services continues to decrease and we are approaching resolution. Administrators may still experience some delays when updating associations. The team is continuing to monitor, and our next update will be to confirm full resolution.

    • resolved · Mar 31, 2026, 06:24 AM UTC

      This incident has been resolved.

    • postmortem · Apr 07, 2026, 02:56 PM UTC

      ![](https://jumpcloud.com/wp-content/themes/jumpcloud/assets/images/logos/jumpcloud-logo-tm-oceanblue.svg) **Date**: Apr 7, 2026 **Date of Incident:** Mar 30, 2026 **Description**: RCA for Directory Association Processing Delays ‌ **Summary:** Starting March 30th at approximately 15:40 MDT, JumpCloud customers experienced significant delays in directory-related updates. This included latency in password changes, user-to-group associations, and outbound provisioning reflecting in downstream systems. The root cause was identified as a specific code deployment in our Devices service that inadvertently flooded a background processing queue with unpartitioned messages, causing a bottleneck that prevented updates from processing in real-time. The issue was fully resolved by 00:25 MDT on March 31, 2026. ‌ **What Happened:** The incident was caused by a change in how the JumpCloud agent retrieves software application configurations. 1. **Traffic Spike:** The new code shifted the "source of truth" for these configurations to a new database. If a device polled the system and did not find its record in the new database, the code automatically enqueued a "track collect" request to sync the data. 2. **Unexpected Volume:** We anticipated a "lazy backfill" \(where records are created over time\), but underestimated the number of devices that had no existing software bindings. This resulted in an immediate, massive spike of nearly 280,000 messages. 3. **The Bottleneck \(Partitioning\):** Crucially, these specific messages were enqueued without a "Partition ID." In our high-scale FIFO \(First-In-First-Out\) queue architecture, messages without a partition ID are processed one-by-one rather than in parallel. This effectively "serialized" the queue, preventing us from scaling up workers to process the backlog faster and causing the observed latency. ‌ **Resolution and Recovery**: Once the offending code was rolled back, the "tap" was turned off, and no further unpartitioned messages were added to the queue. Because the bottleneck was caused by the lack of partitioning, simply scaling horizontally could not speed up the processing of the existing backlog. The team monitored the queue throughput and determined that the safest and fastest path to recovery was allowing the worker to process the existing messages sequentially rather than risking further disruption by attempting to manually manipulate the production queue. ‌ **Corrective Actions**: To ensure this type of bottleneck does not occur again, we have committed to the following: * Improving pre-production testing to better simulate the scale and conditions that can occur in production queue processing * Reviewing other areas of the platform where similar patterns could produce unexpected request spikes * Enhancing monitoring and alerting thresholds to enable faster detection and response when queue backlogs begin to form * Strengthening our deployment validation process to more thoroughly account for background data migrations before releasing dependent code changes

    Latest: ![](https://jumpcloud.com/wp-content/themes/jumpcloud/assets/images/logos/jumpcloud-logo-tm-oceanblue.svg) **Date**: Apr 7, 2026 **Date of Incident:** Mar 30, 2026 **Description**:…

Outage history

Past 90 days · 4 incidents View full outage history →