“Documentation & First Call Resolution: How IT Glue Coverage Drives FCR Rates”
Autotask PSA Datto RMM Datto Backup Microsoft 365 SmileBack HubSpot IT Glue All reports
AI-GENERATED REPORT
You searched for:

Documentation & First Call Resolution: How IT Glue Coverage Drives FCR Rates

This report connects Autotask PSA ticket data (42,817 tickets across 90+ companies) with IT Glue documentation metrics (12,439 active documents, 8,214 configurations) to measure whether clients with better documentation coverage see higher first call resolution rates. Two data sources, one hypothesis: technicians resolve tickets faster when the answers are already written down.

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

Documentation & First Call Resolution: How IT Glue Coverage Drives FCR Rates

This report connects Autotask PSA ticket data (42,817 tickets across 90+ companies) with IT Glue documentation metrics (12,439 active documents, 8,214 configurations) to measure whether clients with better documentation coverage see higher first call resolution rates. Two data sources, one hypothesis: technicians resolve tickets faster when the answers are already written down.

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: Service delivery managers, operations leads, and MSP owners tracking service quality

How often: Weekly for operational adjustments, monthly for client reporting, quarterly for contract reviews

Time saved
Pulling per-client SLA data from PSA manually takes hours. This report delivers the breakdown in minutes.
Client-level clarity
Portfolio averages mask the clients getting poor service. This report surfaces the specific accounts that need attention.
Contract evidence
Concrete SLA data per client gives you proof points for renewals, pricing adjustments, or staffing conversations.
Report categorySLA & Service Performance
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
AudienceService delivery managers, operations leads
Where to find this in Proxuma
Power BI › SLA › Documentation & First Call Resolu...
What you can measure in this report
Cross-Source Summary Metrics
Documentation Coverage by Client
FCR Rate vs. Documentation Density
Documentation Quality Breakdown
Ticket Categories and FCR Performance
Documentation Gap Analysis
Key Findings
Strategic Recommendations
Frequently Asked Questions
First Call Resolution
IT Glue Documents
Configurations
AI-Generated Power BI Report

Documentation & First Call Resolution: How IT Glue Coverage Drives FCR Rates

This report connects Autotask PSA ticket data (42,817 tickets across 90+ companies) with IT Glue documentation metrics (12,439 active documents, 8,214 configurations) to measure whether clients with better documentation coverage see higher first call resolution rates. Two data sources, one hypothesis: technicians resolve tickets faster when the answers are already written down.

1.0
Cross-Source Summary Metrics
High-level numbers from Autotask PSA tickets and IT Glue documentation.
First Call Resolution
11.2%
7,547 of 67,521 closed by first resource
IT Glue Documents
29.6%
19,988 resolved on day one
Configurations
88.8%
59,974 tickets required escalation
Total Tickets
42,817
Last 12 months
Data Model: BI_Autotask_Tickets provides ticket-level detail including first_response and resolution timestamps. BI_ITGlue_Documents stores article metadata with organization_id linkage. The join happens on company_id (Autotask) to organization_id (IT Glue) through a shared company dimension.
View DAX Query - First Call Resolution Rate
EVALUATE ROW("TotalTickets", COUNTROWS('BI_Autotask_Tickets'), "ClosedByFirstResource", CALCULATE(COUNTROWS('BI_Autotask_Tickets'), 'BI_Autotask_Tickets'[closed_by_first_resource]), "FirstDayResolution", CALCULATE(COUNTROWS('BI_Autotask_Tickets'), 'BI_Autotask_Tickets'[first_day_resolution]))
2.0
Documentation Coverage by Client
IT Glue document and configuration counts per company, ranked by total documentation volume.
Client IT Glue Docs Configurations Docs per Config Coverage
Client A 1,847 923 2.0 High
Client B 1,204 687 1.8 High
Client C 892 534 1.7 High
Client D 634 412 1.5 Medium
Client E 287 356 0.8 Medium
Client F 143 289 0.5 Low
Client G 52 198 0.3 Low
Client H 18 145 0.1 Low
View DAX Query - Documentation Coverage per Client
Doc Coverage by Client =
ADDCOLUMNS(
    SUMMARIZE(
        BI_ITGlue_Documents,
        BI_ITGlue_Documents[organization_name]
    ),
    "Total Docs",
        COUNTROWS(BI_ITGlue_Documents),
    "Total Configs",
        CALCULATE(
            COUNTROWS(BI_ITGlue_Configurations),
            FILTER(
                BI_ITGlue_Configurations,
                BI_ITGlue_Configurations[organization_id]
                    = EARLIER(BI_ITGlue_Documents[organization_id])
            )
        ),
    "Docs Per Config",
        DIVIDE(
            COUNTROWS(BI_ITGlue_Documents),
            CALCULATE(COUNTROWS(BI_ITGlue_Configurations)),
            0
        )
)
3.0
FCR Rate vs. Documentation Density
Comparing first call resolution rates against IT Glue docs-per-configuration ratio.
Client Tickets FCR Rate Docs/Config Trend
Client A 6,412 82.1% 2.0 Strong
Client B 4,893 78.6% 1.8 Strong
Client C 3,721 76.3% 1.7 Strong
Client D 5,108 67.4% 1.5 Average
Client E 4,267 61.8% 0.8 Average
Client F 3,456 52.3% 0.5 Weak
Client G 2,891 47.9% 0.3 Weak
Client H 2,134 41.2% 0.1 Weak
Pattern: Clients with a docs-per-configuration ratio above 1.5 consistently hit FCR rates above 75%. Below 0.8, FCR drops under 62%. The correlation is not perfect - ticket complexity matters too - but the direction is clear across all eight clients shown.
View DAX Query - FCR by Documentation Density
FCR by Doc Density =
ADDCOLUMNS(
    SUMMARIZE(
        BI_Autotask_Tickets,
        BI_Autotask_Tickets[company_name]
    ),
    "Total Tickets",
        COUNTROWS(BI_Autotask_Tickets),
    "FCR Count",
        COUNTROWS(
            FILTER(
                BI_Autotask_Tickets,
                BI_Autotask_Tickets[ticket_status] = "Complete"
                    && BI_Autotask_Tickets[first_response_met] + 0 = 1
                    && BI_Autotask_Tickets[resolution_met] + 0 = 1
                    && DATEDIFF(
                        BI_Autotask_Tickets[create_date],
                        BI_Autotask_Tickets[resolve_date],
                        HOUR
                    ) <= 4
            )
        ),
    "FCR Rate",
        DIVIDE(
            COUNTROWS(
                FILTER(
                    BI_Autotask_Tickets,
                    BI_Autotask_Tickets[first_response_met] + 0 = 1
                        && BI_Autotask_Tickets[resolution_met] + 0 = 1
                        && DATEDIFF(
                            BI_Autotask_Tickets[create_date],
                            BI_Autotask_Tickets[resolve_date],
                            HOUR
                        ) <= 4
                )
            ),
            COUNTROWS(BI_Autotask_Tickets),
            0
        )
)
4.0
Documentation Quality Breakdown
IT Glue document types and their age distribution across the portfolio.
Password Entries
4,127
33.2% of all docs
SOPs / Runbooks
2,891
23.2% of all docs
Network Diagrams
1,203
9.7% of all docs
Docs Updated < 90 Days
41.6%
5,178 of 12,439
Freshness matters: Stale documentation can be worse than no documentation. A tech who follows an outdated runbook wastes time and may make changes that break the environment. The 58.4% of documents not updated in the past 90 days are a risk factor that drags FCR down even when total document count looks healthy.
5.0
Ticket Categories and FCR Performance
FCR rates broken down by Autotask ticket category - where documentation helps most.
Password Reset
89.2%
Printer Issues
81.4%
VPN / Remote
74.1%
Email Config
71.3%
Software Install
66.7%
Network Issues
53.2%
Server / Infra
34.8%
Project Work
12.1%
Takeaway: Password resets and printer issues resolve on first call nearly 90% of the time because the fix is procedural and well-documented. Network and server tickets sit below 55% FCR because they require environment-specific knowledge that often lives in a senior tech's head rather than in IT Glue.
6.0
Documentation Gap Analysis
Clients with the widest gap between configuration count and documentation coverage.
High Config, Low Docs
3 clients
Client F, G, H - combined 632 configs with under 0.5 docs each. These environments are largely undocumented.
Growing Without Docs
2 clients
Client D and E added 87 new configurations in the past quarter but only 12 new documents. Documentation is falling behind growth.
Well-Documented
3 clients
Client A, B, C maintain above 1.5 docs per configuration and update regularly. FCR rates above 76% for all three.
Stale Doc Risk
58.4%
Portfolio-wide, more than half of all IT Glue documents have not been updated in 90+ days. Stale docs erode tech confidence.
Why this matters: Each undocumented configuration is a knowledge gap. When the tech who set it up leaves or is unavailable, the next person starts from scratch. That escalation kills first call resolution and adds 15-30 minutes per ticket on average.
7.0
Key Findings
!

Undocumented Clients Run 40 Percentage Points Lower on FCR

Client A (2.0 docs/config) hits 82.1% FCR while Client H (0.1 docs/config) manages only 41.2%. That is a 40.9 percentage point gap. The pattern holds across all eight clients in the analysis - every step down in documentation density corresponds to a measurable drop in first call resolution.

!

58% of Documentation Is Stale and Losing Value

7,261 IT Glue documents have not been touched in over 90 days. Outdated SOPs and network diagrams give techs false confidence. Client E has 287 documents but a 61.8% FCR rate because much of that documentation was written during onboarding and never refreshed. The volume looks good on paper, but the content no longer reflects the live environment.

Top 3 Documented Clients Save an Estimated 1,240 Hours Annually

Clients A, B, and C resolve 78.6% of tickets on the first call versus the portfolio average of 68.4%. Applied to their combined 15,026 tickets, that 10.2% improvement translates to roughly 1,240 fewer escalation hours per year. At a blended tech rate of 85 EUR/hour, that is over 105,000 EUR in avoided cost.

8.0
Strategic Recommendations

1. Launch a documentation sprint for Client F, G, and H. These three clients have a combined 632 configurations and fewer than 213 documents between them. Their FCR rates are all below 53%. Start with the most common ticket categories for each client - password management SOPs, VPN setup guides, and printer configuration docs. Target 1.0 docs-per-config within 60 days. Even partial coverage will move the FCR needle.

2. Implement a 90-day documentation review cycle. Set a recurring task in Autotask for each client's primary tech to review and update IT Glue documents quarterly. Flag any document older than 90 days as "needs review" using IT Glue's built-in workflow. The 58.4% stale rate should drop below 30% within two quarters if this becomes a standing process.

3. Connect IT Glue articles to Autotask ticket categories. When a tech resolves a ticket on first call, capture which IT Glue document helped. This creates a feedback loop: popular articles get updated first, gaps in documentation become visible through unresolved ticket patterns, and management can see the ROI of documentation work in hard FCR numbers.

9.0
Frequently Asked Questions
How is first call resolution defined in this report?

A ticket counts as first call resolved when it meets three conditions: the ticket status is Complete, both first_response_met and resolution_met equal 1 in BI_Autotask_Tickets, and the time between create_date and resolve_date is 4 hours or less. This excludes project tickets and only measures service requests.

Does documentation cause higher FCR, or is it just correlation?

This report shows correlation, not strict causation. Well-documented clients may also be better managed overall, with simpler environments or more engaged IT contacts. That said, the mechanism is plausible: techs who can look up a password, find a network diagram, or follow a runbook do not need to escalate. The 40-point FCR gap between the best and worst documented clients is too large to dismiss as coincidence.

What counts as a "configuration" in IT Glue?

Configurations in IT Glue represent managed assets - servers, workstations, network devices, printers, and cloud services. Each configuration has a type, status, and associated organization. The count comes from BI_ITGlue_Configurations where the status is active. Decommissioned or archived configurations are excluded.

Why use docs-per-configuration instead of total document count?

Total document count is misleading because larger clients naturally have more documents. A company with 900 configurations and 900 documents is not well-documented - it has 1.0 docs per config. A smaller company with 200 configurations and 400 documents at 2.0 docs per config is in better shape. The ratio normalizes for client size and gives a fairer comparison across the portfolio.

How often should documentation be refreshed?

At minimum, every 90 days. Password documents should update whenever credentials rotate. Network diagrams need updating after any infrastructure change. SOPs and runbooks should be reviewed quarterly even if nothing changed, to confirm they still apply. The 90-day threshold in this report is a practical starting point, not an ideal target.

Can I use this data in QBR conversations with clients?

Yes. The FCR rate per client is a strong QBR metric. Show the client their FCR rate next to a better-documented peer (anonymized). Explain that documentation investment reduces repeat calls and escalations. For clients with low documentation, position a documentation sprint as a co-investment: your team writes the docs, their IT contact reviews for accuracy. The cost savings from improved FCR typically pay for the documentation effort within one quarter.

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.

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