How to identify slow widgets in Service Portal using a browser debug consoleIssue <!-- 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:; } --> To fix slow widgets on a Service Portal page, you can use the debug console within your browser to pinpoint which widgets are causing the delays, and determine if any queries can be optimized to improve their speed. ResolutionEnable the debug console in your browser to obtain timing information for a widget.: Open Service Portal. http://<yourInstance>.service-now.com/spObserve the widgets loading on the page.Open 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, select the header of each widget. The timing information is displayed at the top of the pop-out menu Current Status generated in : 0.004 You can 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, select the Trash Can icon within the browser console. Select 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.