Getting Started with DeskDirector
DeskDirector Portals
Browser Support
What is the DeskDirector Admin Portal?
What is the DeskDirector TECH Portal?
What is the DeskDirector Client Portal?
Desktop Portal
Managing Your Account
Pricing & Subscription Plans
Deskdirector - Sign up walk through
Managing your DeskDirector Subscription
Admin Essentials
Release Notes
Enabling Master Admin
Permissions & Feature Configuration (Tokity)
Permissions & Feature Configuration (ConnectWise/Autotask Partners)
Automatic Contact Creation
The Developer Corner
Monitoring Portal Usage
DeskDirector Features Overview
Desktop Portal Version Differences
Logging in to DeskDirector
User Profiles & Profile Pictures
Office Hours
Using Markdown
How Searching Works
Embedding Help Page Media
Get started with the DeskDirector Power Automate Connector
Features
Portal Customization
Service Catalogue
Forms
Getting started with DeskDirector Forms
DeskDirector Forms - Question Types in Detail
Dynamic Form Content
Communication
Actionable Messages for Emails
Real-Time Chats
Notifications
Email Notifications
Email Template Engine
Surveys
Broadcasts
Generative AI
DeskDirector with Generative AI
Setting up AI Service Providers
AI Assistants in DeskDirector
Custom Tools for AI Assistants
Knowledge Bases for AI Assistants
Ticket Summary for Tech Portal
Advanced
Login & Authentication
Contact & User Groups
Approvals
Task Lists
The Learning Center
Group Tags
Custom Domains
File Storage
Portal Deep Linking
Clean Tickets
Contacts
Accounts
Service Dashboard
Auditing and Analytics
Integrations
ConnectWise
ConnectWise Custom Menu Item for DeskDirector
ConnectWise
ConnectWise Quotes & Invoices
ConnectBooster
ConnectWise Sell
ConnectWise - Avoid Aggressive Notifications
AutoTask
Switching or Merging PSAs
QuoteWerks
Wise-Pay
TimeZest
BiggerBrains
OneNote Notebooks
Integrations - Frequently Asked Questions
IT Glue
Microsoft Teams App
Introducing the DeskDirector for Microsoft Team App
Installing the Microsoft Teams App (Client Mode)
Installing the Microsoft Teams App (Tech Mode)
Setting up Tags for Teams Discussions (Tech)
Branding the DeskDirector Teams App
DeskDirector Teams App Notifications
User Groups Integration with Microsoft Teams
Setting up Content Security Policy (CSP)
Advanced topic: Setting up Tech & Client Mode in the same tenancy
Integrating Microsoft Teams with DeskDirector Tech Portal
Smart Alerts for Tech Users
Microsoft Power Automate
Actions
Solutions
Power Automate Template Gallery
Featured Solution: Teams Ticket Discussion
Featured Solution: Ticket Briefing
Introduction to Power Automate
Power Automate Connector - Setting up your first flow
DeskDirector Power Platform Connector Reference
DeskDirector Connector Triggers
Troubleshooting
Troubleshooting via Web Developer Tools
Desktop Portal - Common Issues
Contact & Service Agent Impersonation
Diagnose Entities Tool
DeskDirector Desktop App - Installation Issues
Troubleshooting DeskDirector Connection Issues
Login & Authentication - Common Issues
Permissions & Access - Common Issues
Tickets & Chats - Common Issues
Approvals - Common Issues
Email & Email Delivery - Common Issues
PSA Entity Syncing - Common Issues
PSA Integration - Common Issues
ConnectWise Integration - Common Issues
Autotask Integration - Common Issues
ConnectWise Audit Trail - Exporting API Logs
Microsoft Teams App - Common Issues
Contact DeskDirector Support
Security
Glossary
Archived
- All Categories
- Features
- Auditing and Analytics
Auditing and Analytics
Updated
by Niamh Ferns
DeskDirector DD has many auditing and analytics options available. The audit logs and analytics fall into these categories
- Authentication
- Admin changes
- Email usage
- Usage analytics
- Advanced analytics
Audit Log Contents
We use Microsoft's Insight Analytics to capture over 40 Interactive events in the Portals. (These are available, on request, to our Platinum customers.)
Logs generally contain the following
- Time and date
- Action
- Outcome (Success/Failure.)
- IP address (If available.)
- Actor
- Event metadata
- The event metadata will hold the details of the update in JSON form:
1 National cloud for OAuth session is global
2 Resolved user's information from Microsoft graph API.
3 Jane Doe/User.Name@Company.inc try to login to admin console
4 System found 2 members for OAuth login
[
{
"name": "Jane Doe",
"entityId": 111,
"email": "User.Name@Company.inc"
},
{
"name": "Jane Doe API",
"entityId": 112,
"email": "User.Name@Company.inc"
}
]
5 Member Jane Doe is valid
{
"entityId": 111,
"name": "Jane Doe"
}
6 Authorize cookie issued
{
"rememberMe": false
}
The logs can be searched for the following events
CreateUpdateDelete
Authentication
Contact Authentication
DeskDirector records every contact authentication event in a contact authentication log
DeskDirector logs time and date, authentication method, authentication ID, outcome (success/failure), IP address (when available) every time contact logs into the system.
For each event you can see metadata appropriate to the authentication method so that the log can be cross referenced with, for example, Azure AD logs
Analytics and Logs

Whenever Permissions, Board access, Menus, Service Types, Service Groups User Groups, and others are changed for a Companies, Service Agents, etc, these are recorded in an Audit Log for the thing that was changed. Above, you can see an example for Service Agents*. Below you'll see what they look like expanded.

Email Usage
Every email sent by DeskDirector is logged and the record of that event available for review. You can find the complete system history under Email > Delivery History in the Admin Portal:

Faceted delivery histories are found on the Company/Account and Contact pages:

Usage Analytics
Usage analytics can be found under the Analytics section in the admin Portal. Here you can find information on
- User portal usage
- Bigger Brains courses (where purchased)
- The DD native file system

Analytics Via API
We have several API endpoints customer can use to gather portal usage stats. This can be viewed via https://[your-subdomain-here].deskdirector.com/swagger.
API v2 > Dashboards.
GET /api/v2/dashboards/portal/monthly/reports
Use “general” as Parameter value and it should show you the usage breakdown per month with the report entityID, number of users and activity Count.
GET /api/v2/dashboards/portal/monthly/reports/{reportId}
This endpoint is what you need to get a breakdown of user activity per month. Input a reportId from the first endpoint and this should show you the companies and contacts with their corresponding activity for that month.
POST /api/v2/dashboards/portal/monthly/reports/{reportId}/refresh
Sends a post request to refresh a specific monthly report (only works for updates to contact and company name).
GET /api/v2/dashboards/portal/pastweek/{type}
Use “general” as Parameter value and it should show you the usage breakdown the week before -- with the report entityID, number of users and activity Count.