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();
- Managed Metadata error - The data returned from the tagging UI was not formatted correctly
- How to generate client id and secret to register SharePoint App with OAuth
- Create SharePoint Site Collection with new Content database in existing web application
- Fix Error 2711 SQL RBS client - The installer has encountered an unexpected error. The specified Feature name ('Docs') not found in Feature table
- How to exclude results from SharePoint Search
- 'Edit Document' Requires a Windows Sharepoint Services-compatible application and Microsoft Internet Explorer 6.0 or higher
- [Solved] SharePoint Access Denied error editing Document Name
- Recommended size and resolution for SharePoint Online Site logo
- SharePoint Server 2016 IT Preview - new improved Features and Enhancements
- Restore deleted Office 365 SharePoint group site
- SharePoint An unexpected error has occurred - Correlation ID and PowerShell Merge-SPlogfile
- [Solved] SharePoint Search Internal server error exception
- SharePoint CAML query error - The XML source is not correct
- How to hide quick launch in SharePoint classic site
- Not receiving email notification alert in SharePoint Online workflow - Power Automate, FLOW
- Change SharePoint search results FullTextSqlQuery RowLimit 10000
- Fix Power BI error Access to the resource is forbidden when connecting SharePoint Online List as data source
- [Fix] Restricted View permission level missing in SharePoint Online site library
- How to upload file programmatically to SharePoint Document Library using Server Object Model C# .Net
- How to create classic site in SharePoint Online
- That did'nt work, Issue type User not in directory - SharePoint external access error
- Merge-SPlogfile PowerShell - SharePoint Correlation ID error
- Fix Power BI 404 not found error when connecting SharePoint Online List as Data Source
- SharePoint Server 2016 IT Preview Deprecated Removed features
- SharePoint error - An exception occurred when trying to issue security token: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms..
- Word wrap text in Notepad++ - NotepadPlusPlus
- ls: .: Operation not permitted - Mac Big Sur Terminal Zsh Error - MacOS
- Android Images with Rounded Corners : ImageView - Android
- How to Download Jira App for Mac - Jira
- Android Disable back button programatically - Android
- How to enable Dark Mode in Windows 11 - Windows-11
- Check Bluetooth is turned on or off on Android device programmatically [Java Code] - Android
- How to know docker Engine details - Docker