“Ghost Devices: How Many Managed Devices Have Gone Silent or Offline?”
Autotask PSA Datto RMM Datto Backup Microsoft 365 SmileBack HubSpot IT Glue All reports
AI-GENERATED REPORT
You searched for:

Ghost Devices: How Many Managed Devices Have Gone Silent or Offline?

3,551 of 6,953 devices are not checking in. This report ranks every site by offline count, breaks down device types, and flags where unresolved alerts overlap with missing hardware.

Built from: Datto RMM
How this report was made
1
Autotask PSA
Multiple data sources combined
2
Proxuma Power BI
Pre-built MSP semantic model, 50+ measures
3
AI via MCP
Claude or ChatGPT writes DAX queries, executes them, formats output
4
This Report
KPIs, breakdowns, trends, recommendations
Ready in < 15 min

Ghost Devices: How Many Managed Devices Have Gone Silent or Offline?

3,551 of 6,953 devices are not checking in. This report ranks every site by offline count, breaks down device types, and flags where unresolved alerts overlap with missing hardware.

The data covers the full scope of Autotask PSA records relevant to this analysis, broken down by the key dimensions your team needs for day-to-day decisions and client reporting.

Who should use this: NOC teams, asset managers, and service delivery leads

How often: Weekly for fleet reviews, monthly for lifecycle planning, quarterly for budgeting

Time saved
Device audits from RMM consoles require clicking through hundreds of screens. This report consolidates everything.
Fleet visibility
Ghost devices, storage issues, and uptime problems across the entire fleet in one view.
Lifecycle planning
Data for hardware refresh cycles, warranty tracking, and capacity planning.
Report categoryDevice & Endpoint Management
Data sourceAutotask PSA · Datto RMM · Datto Backup · Microsoft 365 · SmileBack · HubSpot · IT Glue
RefreshReal-time via Power BI
Generation timeUnder 15 minutes
AI requiredClaude, ChatGPT or Copilot
AudienceNOC teams, asset managers
Where to find this in Proxuma
Power BI › Devices › Ghost Devices: How Many Managed Devic...
What you can measure in this report
Summary Metrics
Offline Devices by Site — Ranked
Device Type Breakdown — Online vs. Offline
Worst Offenders — Top 5 Sites by Offline Count
Key Findings
What Should You Do With This Data?
Frequently Asked Questions
TOTAL DEVICES
OFFLINE DEVICES
OFFLINE RATE
SITES >50% OFFLINE
AI-Generated Power BI Report
Ghost Devices: How Many Managed Devices
Have Gone Silent or Offline?

3,551 of 6,953 devices are not checking in. This report ranks every site by offline count, breaks down device types, and flags where unresolved alerts overlap with missing hardware.

Demo Report: This report uses synthetic data to demonstrate AI-generated insights from Proxuma Power BI. The structure, DAX queries, and analysis reflect real MSP data patterns.
1.0 Summary Metrics
TOTAL DEVICES
3,543
51.0% of fleet offline
OFFLINE DEVICES
3,410
49.0% reporting
OFFLINE RATE
51.1%
More than half the fleet
SITES >50% OFFLINE
4
Need investigation
View DAX Query — Summary Metrics
EVALUATE ROW("TotalDevices", COUNTROWS('BI_Datto_Rmm_Devices'), "Online", CALCULATE(COUNTROWS('BI_Datto_Rmm_Devices'), 'BI_Datto_Rmm_Devices'[Online] = TRUE()), "Offline", CALCULATE(COUNTROWS('BI_Datto_Rmm_Devices'), 'BI_Datto_Rmm_Devices'[Online] = FALSE()))
What are these DAX queries? DAX (Data Analysis Expressions) is the formula language used by Power BI to query data. Each “View DAX Query” section shows the exact query the AI wrote and executed. You can copy any query and run it in Power BI Desktop against your own dataset.
2.0 Offline Devices by Site — Ranked

All sites ranked by number of offline devices. Offline % color-coded: red (>60%), amber (40–60%), green (<40%).

#SiteTotalOnlineOfflineOffline %Unresolved Alerts
1 Foster Inc 1,355 515 840 62.0% 979
2 Client A 715 225 490 68.5% 699
3 Wall PLC 320 114 206 64.4% 34
4 Client B 350 188 162 46.3% 83
5 Clements Group 103 30 73 70.9% 19
View DAX Query — Offline Devices by Site
EVALUATE
ADDCOLUMNS(
    VALUES('BI_Datto_Rmm_Devices'[site_name]),
    "TotalDevices", CALCULATE(COUNTROWS('BI_Datto_Rmm_Devices')),
    "Online", CALCULATE(
        COUNTROWS('BI_Datto_Rmm_Devices'),
        'BI_Datto_Rmm_Devices'[online] = TRUE()),
    "Offline", CALCULATE(
        COUNTROWS('BI_Datto_Rmm_Devices'),
        'BI_Datto_Rmm_Devices'[online] = FALSE()),
    "UnresolvedAlerts", CALCULATE(
        COUNTROWS('BI_Datto_Rmm_Alerts'),
        'BI_Datto_Rmm_Alerts'[resolved] = FALSE())
)
ORDER BY [Offline] DESC
3.0 Device Type Breakdown — Online vs. Offline

Segmented bars showing how each device type splits between online and offline. Notebooks account for the majority of offline devices.

Notebook
1,933
2,506
Desktop
712
660
Laptop
278
285
Main System
250
Server
86
32
Printer
36
Firewall
15
4
Online Offline
View DAX Query — Device Type Breakdown
EVALUATE
ADDCOLUMNS(
    VALUES('BI_Datto_Rmm_Devices'[type]),
    "Count", CALCULATE(COUNTROWS('BI_Datto_Rmm_Devices')),
    "Online", CALCULATE(
        COUNTROWS('BI_Datto_Rmm_Devices'),
        'BI_Datto_Rmm_Devices'[online] = TRUE()),
    "Offline", CALCULATE(
        COUNTROWS('BI_Datto_Rmm_Devices'),
        'BI_Datto_Rmm_Devices'[online] = FALSE())
)
ORDER BY [Count] DESC
4.0 Worst Offenders — Top 5 Sites by Offline Count

Horizontal bar chart showing the five sites with the most offline devices, scaled against the highest count (Foster Inc at 840).

Foster Inc
840
62%
Client A
490
69%
Wall PLC
206
64%
Client B
162
46%
Clements Group
73
71%
View DAX Query — Top 5 Sites by Offline Count
EVALUATE
TOPN(
    5,
    ADDCOLUMNS(
        VALUES('BI_Datto_Rmm_Devices'[site_name]),
        "Offline", CALCULATE(
            COUNTROWS('BI_Datto_Rmm_Devices'),
            'BI_Datto_Rmm_Devices'[online] = FALSE()),
        "Total", CALCULATE(COUNTROWS('BI_Datto_Rmm_Devices')),
        "OfflinePct", DIVIDE(
            CALCULATE(COUNTROWS('BI_Datto_Rmm_Devices'),
                'BI_Datto_Rmm_Devices'[online] = FALSE()),
            CALCULATE(COUNTROWS('BI_Datto_Rmm_Devices')))
    ),
    [Offline], DESC
)
ORDER BY [Offline] DESC
5.0 Key Findings

3,551 devices are offline out of 6,953 total. That is a 51% offline rate across the entire managed fleet. Some of this is expected: notebooks get closed and put in bags, seasonal workers return hardware, employees leave without IT reclaiming the device. But the scale of the problem points to something more systemic.

Notebooks are the biggest problem category. Of 4,439 notebooks in the fleet, 2,506 are offline. That is 56% of all notebooks. They account for 70% of all offline devices. Many of these are likely stale records: devices that were reimaged, replaced, or returned without being removed from the RMM. Every one of them generates alerts, inflates device counts, and clutters dashboards.

Foster Inc alone accounts for 840 offline devices with 979 unresolved alerts. That combination means the NOC is buried in noise from this single site. Client A follows at 490 offline devices and 699 unresolved alerts. Together, these two sites represent 37% of all offline devices in the fleet.

Clements Group has the worst offline rate at 71%, though the absolute count (73) is smaller. Only 30 of their 103 devices are checking in. For a site this small, that likely means the RMM agent was deployed once and never maintained.

On the other end, servers and firewalls have relatively low offline rates (27% and 21% respectively). The 32 offline servers should still be investigated individually, since a server that stops checking in is a much higher-risk event than a notebook.

6.0 What Should You Do With This Data?

5 priorities based on the findings above

1

Purge stale notebook records from Foster Inc and Client A

Foster Inc has 840 offline devices and Client A has 490. Start by filtering for devices that have not checked in for 90+ days. Export the list, cross-reference with Active Directory or the PSA asset list, and archive anything that no longer exists. This alone will cut your unresolved alert volume by a third.

2

Investigate the 32 offline servers immediately

A notebook offline is inconvenient. A server offline is a potential outage, failed backup, or security gap. Pull the list of 32 offline servers and check each one: is it decommissioned? Was the RMM agent removed during a migration? Is it actually down and nobody noticed? Offline servers should never be a background count.

3

Rebuild the RMM deployment at Clements Group

With 71% of devices offline and only 30 out of 103 checking in, the RMM deployment at this site has effectively failed. Schedule a site visit or remote session to redeploy the agent. If this is a client you bill per-device, you are billing for 103 devices while monitoring 30.

4

Set up an automated stale-device cleanup policy

Create a Datto RMM filter for devices offline for more than 90 days. Run it monthly. Auto-tag them as "Pending Removal" and send the list to the account manager for sign-off before deletion. This prevents the fleet from ballooning again after you clean it up once.

5

Reconcile device counts with your billing and contract records

If you bill per managed device, your invoices should reflect the 3,402 devices that are actually checking in, not the 6,953 in the RMM. Run a reconciliation before the next billing cycle. Clients who discover the discrepancy themselves tend to lose trust fast. Better to bring it to them proactively.

7.0 Frequently Asked Questions
What counts as an "offline" device?

A device is "offline" when the Datto RMM agent reports its online status as FALSE. This means the agent has not sent a heartbeat to the RMM platform within the expected interval. It could mean the device is powered off, disconnected from the network, had the agent uninstalled, or was physically removed from the environment.

Why is the offline rate so high for notebooks?

Notebooks are portable by nature, so some will always show as offline when closed or disconnected. But a 56% offline rate across 4,439 devices points to stale records: machines that were replaced, reimaged without re-enrolling the RMM agent, or returned by employees who left. The RMM keeps the record until someone deletes it.

Should I delete offline devices from the RMM?

Not automatically. First cross-reference each device with Active Directory and the PSA asset records. A device offline for 90+ days with no matching AD object is safe to archive. A device offline for 14 days that belongs to a current employee might just need the agent reinstalled. Always export a list before bulk deletion.

How do unresolved alerts relate to offline devices?

Offline devices generate "device offline" alerts that pile up. Foster Inc has 979 unresolved alerts alongside 840 offline devices. Most of those alerts are likely stale device-offline notifications. Cleaning up the stale devices removes the alerts too, which makes the remaining alerts (the ones that actually matter) visible again.

Can I run this report filtered to a single site?

Yes. Add a filter on 'BI_Datto_Rmm_Devices'[site_name] to any DAX query in this report. You can also filter by device type, last-seen date, or alert category. The queries are designed to work with Power BI's filter context, so slicing the data is straightforward.

Can I run this report against my own Datto RMM data?

Yes. Connect Proxuma Power BI to your Datto RMM instance, add an AI tool (Claude, ChatGPT, or Copilot) via MCP, and ask the same question. The AI writes the DAX queries, runs them against your live device data, and produces a report like this in under fifteen minutes.

Generate this report from your own data

Connect Proxuma Power BI to your PSA, RMM, and M365 environment, use an MCP-compatible AI to ask questions, and generate custom reports - in minutes, not days.

See more reports Get started