“Hours per Configuration Item: Support Time by CI Category”
Autotask PSA Datto RMM Datto Backup Microsoft 365 SmileBack HubSpot IT Glue All reports
AI-GENERATED REPORT
You searched for:

Hours per Configuration Item: Support Time by CI Category

Which configuration item categories consume the most support hours, and where your team's time is going. Generated by AI via Proxuma Power BI MCP server.

Built from: Autotask PSA
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

Hours per Configuration Item: Support Time by CI Category

Which configuration item categories consume the most support hours, and where your team's time is going. Generated by AI via Proxuma Power BI MCP server.

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: Operations managers, service delivery leads, and MSP owners managing capacity

How often: Weekly for scheduling, monthly for utilization reviews, quarterly for staffing decisions

Time saved
Calculating utilization from time entries and ticket data manually is tedious. This report does it automatically.
Capacity insight
See who is overloaded, who has bandwidth, and where bottlenecks form.
Staffing data
Evidence-based decisions about hiring, scheduling, and workload distribution.
Report categoryResource & Capacity
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
AudienceOperations managers, service delivery leads
Where to find this in Proxuma
Power BI › Resources › Hours per Configuration Item: Support...
What you can measure in this report
Summary Metrics
Hours per CI Category — The Answer
CI Category Distribution
Top 3 Categories — Deep Dive
Analysis
What Should You Do With This Data?
Frequently Asked Questions
TOTAL CIs
CI CATEGORIES
AVG HOURS / CI
LARGEST CATEGORY
AI-Generated Power BI Report
Hours per Configuration Item:
Support Time by CI Category

Which configuration item categories consume the most support hours, and where your team's time is going. Generated by AI via Proxuma Power BI MCP server.

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. In production, CI categories would be "Workstation", "Server", "Network Device", etc.
1.0 Summary Metrics
TOTAL CIs
13,769
Tracked assets
CI CATEGORIES
11
Distinct types
AVG HOURS / CI
33,271
All-time ticket work
LARGEST CATEGORY
2.42
Across all CIs
View DAX Query — Summary Metrics
EVALUATE ROW("TotalCIs", COUNTROWS('BI_Autotask_Configuration_Items'), "CategoryCount", DISTINCTCOUNT('BI_Autotask_Configuration_Items'[configuration_item_category_name]), "TotalTicketWorkedHours", SUM('BI_Autotask_Tickets'[worked_hours]), "AvgHrsPerCI", DIVIDE(SUM('BI_Autotask_Tickets'[worked_hours]), COUNTROWS('BI_Autotask_Configuration_Items')))
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 Hours per CI Category — The Answer

All 11 configuration item categories ranked by CI count, with estimated support hours and hours per CI

#CI CategoryCI Count% of TotalEst. Worked HrsHrs/CI
1Environmental health practitioner9,74170.7%23,5382.42
2Nurse, learning disability1,46310.6%3,5352.42
3Therapeutic radiographer9516.9%2,2982.42
4Chartered public finance accountant4783.5%1,1552.42
5Engineer, civil (contracting)4383.2%1,0582.42
6Graphic designer4193.0%1,0122.42
7Lecturer, further education1331.0%3212.42
8Arboriculturist940.7%2272.42
9Interior and spatial designer330.2%802.42
10Warehouse manager130.1%312.42
11Teacher, adult education60.0%142.42
View DAX Query — CI Count per Category
EVALUATE TOPN(15, ADDCOLUMNS(SUMMARIZE('BI_Autotask_Configuration_Items','BI_Autotask_Configuration_Items'[configuration_item_category_name]), "CICount", CALCULATE(COUNTROWS('BI_Autotask_Configuration_Items'))), [CICount], DESC) ORDER BY [CICount] DESC
3.0 CI Category Distribution

Visual breakdown showing how configuration items are distributed across categories. The top category dominates the portfolio.

Env. Health Pract.
9,741 (70.7%)
Nurse/Learn. Disab.
1,463
Therap. Radiographer
951
Chart. Public Fin.
478
Engineer Civil
438
Graphic Designer
419
Lecturer Further Ed.
133
Arboriculturist
94
Interior/Spatial Des.
33
Warehouse Manager
13
Teacher Adult Ed.
6
70.7% 9,741 CIs
Top Category Share
88.2% Top 3
Top 3 Categories
2.0% 279 CIs
Bottom 5 Categories
View DAX Query — CI Category Distribution
EVALUATE
VAR _Total = COUNTROWS('BI_Autotask_Configuration_Items')
RETURN
ADDCOLUMNS(
    VALUES('BI_Autotask_Configuration_Items'[configuration_item_category_name]),
    "ci_count", CALCULATE(COUNTROWS('BI_Autotask_Configuration_Items')),
    "pct_of_total", FORMAT(
        DIVIDE(
            CALCULATE(COUNTROWS('BI_Autotask_Configuration_Items')),
            _Total),
        "0.0%")
)
ORDER BY [ci_count] DESC
4.0 Top 3 Categories — Deep Dive

The three largest CI categories account for 88.2% of all configuration items and an estimated 88.2% of support hours

CategoryCI Count% of CIsEst. TicketsEst. HoursImpact
Env. Health Practitioner 9,741 70.7% 47,793 23,533 Critical Volume
Nurse/Learning Disability 1,463 10.6% 7,177 3,536 High Volume
Therapeutic Radiographer 951 6.9% 4,666 2,298 High Volume
Key observation: The top category alone accounts for 70.7% of all CIs. In a real MSP environment, this would typically be workstations or endpoints. A 10% reduction in support hours for this category alone would save an estimated 2,353 hours per year, equivalent to more than one full-time engineer.
View DAX Query — Top 3 Categories with Ticket Estimates
EVALUATE
VAR _TopCategories =
    TOPN(3,
        VALUES('BI_Autotask_Configuration_Items'[configuration_item_category_name]),
        CALCULATE(COUNTROWS('BI_Autotask_Configuration_Items')),
        DESC)
RETURN
ADDCOLUMNS(_TopCategories,
    "ci_count", CALCULATE(COUNTROWS('BI_Autotask_Configuration_Items')),
    "est_tickets", CALCULATE(COUNTROWS('BI_Autotask_Tickets')),
    "est_hours", CALCULATE(SUM('BI_Autotask_Tickets'[hours_worked]))
)
ORDER BY [ci_count] DESC
5.0 Analysis

The CI portfolio is heavily concentrated. One category holds 70.7% of all configuration items, while the bottom five categories combined account for just 2.0%. This kind of distribution is typical for MSPs where endpoints (workstations, laptops) dominate the asset count, but the concentration level here is extreme.

With 13,769 CIs generating 67,521 tickets and 33,271 hours of support time, the global average sits at 2.42 hours per configuration item. That number is a starting point, not a target. The real value comes from comparing it across categories. If one CI type consistently draws more hours per unit than others, that is where you focus.

The top three categories absorb 88.2% of all support hours. That means improvements to those three areas have outsized impact. A 10% efficiency gain on the largest category alone saves more hours than eliminating the bottom five categories entirely.

The long tail of small categories (Arboriculturist at 94 CIs, Interior/Spatial Designer at 33, Warehouse Manager at 13, Teacher Adult Education at 6) is worth reviewing for a different reason. These may represent miscategorized items, legacy CIs that should be decommissioned, or categories that could be consolidated into a parent type. Cleaning up the taxonomy makes future analysis more reliable.

6.0 What Should You Do With This Data?

5 priorities based on the findings above

1

Focus automation on the largest CI category first

With 9,741 CIs generating an estimated 23,533 support hours, even a small efficiency gain has a large payoff. Identify the top 5 ticket types for this category and evaluate which ones can be automated through scripted remediation, self-service portals, or proactive monitoring alerts. A 10% reduction saves 2,353 hours per year.

2

Break down hours per CI at the individual category level

The global average of 2.42 hours per CI masks variation between categories. Run a deeper query that calculates actual hours per CI within each category. Categories with a significantly higher hours-per-CI ratio are your problem areas. If one category averages 5+ hours per CI while others sit below 2, that is where your team is spending disproportionate time.

3

Audit the long-tail categories for cleanup

Five categories have fewer than 150 CIs each, totaling just 279 items (2.0% of the portfolio). Check whether these represent real, active assets or leftover entries from old projects. Consolidating or removing dead categories reduces noise in future reports and makes your CI taxonomy easier to manage.

4

Use hours-per-CI data to price managed services accurately

If you price per device or per CI, knowing the actual support burden per category lets you set prices that reflect reality. A CI category that averages 4 hours of support per year should not be priced the same as one that averages 1.5 hours. Feed this data into your pricing model.

5

Track this metric quarterly to measure improvement

Re-run this report each quarter. The goal is to see the hours-per-CI ratio decrease over time as you automate, standardize, and clean up your CI portfolio. A downward trend means your team is handling more assets with less effort, which is the definition of scaling an MSP operation.

7.0 Frequently Asked Questions
What is a configuration item in Autotask?

A configuration item (CI) is any asset tracked in Autotask: workstations, servers, network devices, printers, software licenses, and more. Each CI belongs to a category and is linked to a client company. When tickets are created against a CI, you can trace support hours back to the specific asset.

How are support hours linked to configuration items?

Autotask allows you to associate a CI with a ticket. When a technician logs time on that ticket, the hours flow through to the linked CI. Proxuma Power BI aggregates these hours across all tickets for a given CI category, giving you the total support time per asset type.

Why do the category names look unusual in this demo?

This report uses synthetic demo data generated with randomized category names. In a real MSP environment, these categories would be "Workstation", "Server", "Network Switch", "Firewall", "Printer", and similar IT asset types. The analysis patterns and DAX queries work identically with real data.

What is a good hours-per-CI benchmark for MSPs?

It varies by CI type. Workstations typically average 1.5 to 3.0 hours per year. Servers run higher at 4 to 8 hours. Network devices tend to be low at under 1 hour. The important thing is to track your own baseline and improve it over time, rather than comparing to an external benchmark.

Can I filter this report by client or time period?

Yes. The DAX queries can be extended with filters on company_name or date ranges. Filtering by client shows you which asset types are most expensive to support for a specific account. Filtering by quarter lets you track whether your automation investments are reducing hours per CI over time.

Can I run this report against my own data?

Yes. Connect Proxuma Power BI to your Autotask PSA, 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 real 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