How to obtain slow widget Debug timing in Service PortalIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } --> How to obtain slow widget Debug timing in Service Portal Problem There may be one or many slow widgets on a ServiceNow Service Portal page (eg: /sp) but it is not obvious how you determine which widget is taking the time on the page. You would like to enable some debug timing information in order to determine which widget is slow, and therefore investigate further if its query can be optimized to improve its speed. Solution Enabling the debug console and obtaining the timing for a Service Portal widget: Load the Service Portal, http://<yourInstance>.service-now.com/spObserve the widgets loading on the pageOpen up the debug console within the browser: Firefox: Tools > Web Developer > Browser Console > console (sub tab)Chrome: View > Developer > Developer Tools > console (sub tab) While holding the Control key down, click on the header of each widget. The timing information is displayed at the top of the pop out menu Current Status generated in : 0.004 It is possible to do this for each widget on the Service Portal. To obtain more detailed information for the widget, complete the remaining steps. Select the last option Log to console: $scope The browser console populates with the widget object.Within the Widget instance, expand the Object branchLook for the _server_time. This is the timing information for that widget. To erase all console information, click the Trash Can icon within the browser console, to click on another widget if required. Repeat the process as necessary for each widget and determine which are the slower widgets on that particular Service Portal page.