(Thanks to Ankur Goyal, one of the PowerPivot mid-tier testers)
SharePoint 2010 comes with a whole group of new developer tools. But there is none cooler than the Developer Dashboard. The Developer Dashboard allows you to monitor page load performance on SharePoint. Now how cool is that – you see how each element on the page loads! You can enable this tool by running the following PowerShell scripts on the SharePoint 2010 Management Shell on the WFE. For example, here is my Start menu:
And here is the script:
$webSvc = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$webSvc.CollectSPRequestAllocationCallStacks = ‘True’
$webSvc.Update()
$webSvc.DeveloperDashboardSettings.EnableDiagnosticMode()
This tool allows you to see query statistics on any SharePoint page, basically what is running and for how long. Once you run the above script, you will see an extra icon on the top left side of the page (as shown below).
Once you will click on it, it will give you a detail history at the bottom of the page.
Notice all of the information that now appears at the bottom of the page. Now how cool is that!!
Enjoy.


“Once you run the above script, you will see an extra icon on the top left side of the page (as shown below).”
Where I have been able to read about it?
Follow the links in the first comment and you will see it. More info here:
http://devdashvis.codeplex.com/
http://msdn.microsoft.com/en-us/library/ff512745.aspx
Hope that helps.
_-_-_ Dave
[...] See some previous postings on the topic here: http://blogs.technet.com/b/speschka/archive/2009/10/28/using-the-developer-dashboard-in-sharepoint-2010.aspx http://powerpivotgeek.com/2010/05/18/enabling-the-sharepoint-developer-dashboard/ [...]