The Developer Dashboard is available with SharePoint 2010 and SharePoint 2013 which provides tracking information to the developers and administrators for debugging and troubleshooting issues with page and its components, usually to check the rendering time.
Developers can identify what type of problem by looking at the traces found on the page itself. The performance issues and resource usage information is also available in Unified Logging Service (ULS) logs but understanding the raw data takes time and is not easy. But Developer Dashboard information is correlated making identifying issues much easier.
Information included- Thread execution time
- Number, duration, call stack information and query text of each SQL Server query generated by the page
- Number, duration, and call stack information of each WCF call
- URL or timer job name
- Current user
- Execution start time
- Any of the preceding statistics for code enclosed by SPMonitoredScope
- On - Dashboard is viewable on all pages that use the default master page
- OnDemand - Dashboard icon is displayed on the top right side of the page allowing users to toggle the Dashboard on and off
How to enable-disable Dashboard
- The Developer Dashboard is always Off by default.
- There are multiple ways to enable it - STSADM, Windows PowerShell, SharePoint Object Model.
STSADM- Enable/Disable Developer Dashboard
[ON MODE] stsadm -o setproperty -pn developer-dashboard -pv on
[ONDEMAND MODE] stsadm -o setproperty -pn developer-dashboard -pv ondemand
[DISABLE] stsadm -o setproperty -pn developer-dashboard -pv off
POWERSHELL - Enable/Disable Developer Dashboard
[ON MODE] (Get-SPFarm).PerformanceMonitor.DeveloperDashboardLevel = "On"
[ONDEMAND MODE] (Get-SPFarm).PerformanceMonitor.DeveloperDashboardLevel = "OnDemand"
SHAREPOINT CODE - Enable/Disable Developer Dashboard
SPPerformanceMonitor pm = SPFarm.Local.PerformanceMonitor;
pm.DeveloperDashboardLevel = SPPerformanceMonitoringLevel.On;
pm.Update();
- [Solved] SharePoint Access Denied error editing Document Name
- See actual SharePoint error exception modify web.config
- SharePoint 2010 DataForm Unable to display this Web Part System.StackOverflowException
- SharePoint List redirect user after submitting form NewForm.aspx
- How to retrieve all SharePoint Online List Items using Rest API
- SharePoint workflow Canceled - Coercion Failed: Unable to transform the input lookup data into the requested type
- SharePoint error cannot connect to the configuration database
- Not receiving email notification alert in SharePoint Online workflow - Power Automate, FLOW
- How to create SharePoint List Item programmatically
- SharePoint CAML query error - The XML source is not correct
- Sharepoint Server 2016 installation Prerequisites with download links
- Sharepoint errors were found when compiling the workflow
- Send Email with attachment using SharePoint PowerShell, SMTP server
- Sign in as different user missing in SharePoint 2013
- SharePoint List excel import - This table exceeds the maximum number of supported rows
- SharePoint Managed Metadata Hidden Taxonomy List - TaxonomyHiddenList
- Changed AD user display name showing old name in SharePoint
- How to migrate SharePoint Designer 2010 workflow to Power Automate FLOW (Microsoft Office 365)
- SharePoint Server 2016 error Microsoft Office Online Server 2016 cant be installed on the same machine as a Microsoft SharePoint Server product
- Fix SharePoint 2019 installation error This product requires Visual C++ Redistributable Package for Visual Studio 2017
- Deploy SharePoint wsp solution package using PowerShell
- How to delete SharePoint List Item programmatically
- New-SPLogFile PowerShell - create new SharePoint log file
- SharePoint An unexpected error has occurred - Correlation ID and Merge-SPlogfile
- Change SharePoint search results FullTextSqlQuery RowLimit 10000
- SharePoint 2010 August 2015 Update KB3055049 - Duplicate Document ID issue bug fixed
- Bypass domain name for IIS site (SharePoint)
- SharePoint error - Your organization doesn't allow sharing with users from this domain. Please contact your IT department for help.
- 'Edit Document' Requires a Windows Sharepoint Services-compatible application and Microsoft Internet Explorer 6.0 or higher
- SharePoint list excel import error - Title is a required filed and can't be empty
- SharePoint error - An exception occurred when trying to issue security token: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms..
- Cannot load PowerApps form in SharePoint Online due to repeated authentication
- How to hide quick launch in SharePoint
- How to exclude results from SharePoint Search
- SharePoint Designer Workflow error - Coercion Failed: Input cannot be null for this coercion
- Get-ADUser PowerShell - Get AD user details using email address
- PowerShell iterate and get all SharePoint sites and sub sites
- SharePoint Server 2016 IT Preview Deprecated Removed features
- SharePoint excel error - A problem occurred while connecting to the server. If the problem continues, contact your administrator.
- Merge-SPlogfile PowerShell - SharePoint Correlation ID error
- SharePoint Server 2016 IT Preview - new improved Features and Enhancements
- Recover SharePoint if the SQL Server IP changes
- SharePoint PowerShell Merge-SPLogFile filter by time using StartTime EndTime
- SharePoint formula - Calculated columns cannot contain volatile functions like Today and Me
- [Solved] SharePoint System.IO.FileNotFoundException was unhandled
- Unsupported major.minor version 52.0 in java - Java
- Default speed of Marquee tag : SCROLLAMOUNT - Html
- How to take Screenshots on Mac OS X without Keyboard - Mac-OS-X
- Create Bootstrap carousel slider with Text - Bootstrap
- W3 HTML validator warning Unable to Determine Parse Mode - Html
- How to update SharePoint List Item programmatically - SharePoint
- How to delete SharePoint List Item programmatically - SharePoint
- 21 Useful Android Emulator Short-cut Keyboard Keys - Android
- 4 Open Source SQLite Editor for Mac OS X , Windows and Linux - Mac-OS-X
- CentOS Cannot find a valid baseurl for repo base7x86_64 yum - HowTos
- PHP Fatal error : Call to a member function bind_param() on a non-object - PHP
- align image at middle of div element - CSS
- Detect if Cookies are enabled using JavaScript - JavaScript
- Warning: Cannot modify header information - headers already sent - PHP
- AlertDialog with single button example : Android - Android