--- uid: um-profiler-ui --- # UI and UI Details Profiler module reference >[!NOTE] > The UI and UI Details Profiler module collects Editor-only data, and doesn't work in development builds. The UI and UI Details Profiler modules provide information on how much time and resources Unity spends laying out and rendering the user interface within your application. You can use this module to understand how Unity handles UI batching for your application, including why and how it batches objects. You can also use this module to find out which part of the UI has slow performance, or to preview the UI while you scrub the timeline. To open the Profiler window, go to **Window > Analysis > Profiler**. For more information on how to use the Profiler window, refer to [The Profiler window](xref:um-profiler-window).  ## Chart categories The UI and UI Details Profiler modules' charts contain the following categories. To change the order of the categories in the chart, you can drag and drop them in the chart's legend. You can also click a category's colored legend to toggle its display. ### UI Profiler module |**Chart**|**Description**| |---|---| |**Layout**|How much time Unity spent performing the layout pass for the UI. This includes calculations done by [`HorizontalLayoutGroup`](https://docs.unity3d.com/Packages/com.unity.ugui@latest/index.html?subfolder=/api/UnityEngine.UI.HorizontalLayoutGroup.html), [`VerticalLayoutGroup`](https://docs.unity3d.com/Packages/com.unity.ugui@latest/index.html?subfolder=/api/UnityEngine.UI.VerticalLayoutGroup.html), and [`GridLayoutGroup`](https://docs.unity3d.com/Packages/com.unity.ugui@latest/index.html?subfolder=/api/UnityEngine.UI.GridLayoutGroup.html).| |**Render**|How much time the UI has spent doing its portion of rendering. This is either the time spent rendering directly to the graphics device or rendering to the main render queue.| ### UI Details Profile module |**Chart**|**Description**| |---|---| |**Batches**|Displays the total number of draw calls that are batched together. | |**Vertices**|The total number of vertices that are used to render a section of UI. | |**Markers**|Displays event markers. Unity records markers when the user interacts with the UI (for example, a button click, or a slider value change) and then draws them as vertical lines and labels on the chart.| ## Module details pane When you select the UI or the UI Details Profiler module, the module details pane at the bottom of the Profiler window displays more details on the UI in your application. You can use it to inspect the profiling information about the UI objects in your application. The pane is divided into the following columns: |**Column**|**Description**| |---|---| |**Object**|A list of UI canvases your application used during the period profiled. Double click on a row to highlight the matching object in the scene.| |**Self Batch Count**|How many batches Unity generated for the canvas.| |**Cumulative Batch Count**|How many batches Unity generated for the canvas and all its nested canvases.| |**Self Vertex Count**|How many vertices this canvas is rendering.| |**Cumulative Vertex Count**|How many vertices this canvas and nested canvases are rendering.| |**Batch Breaking Reason**|Why Unity split the batch. Sometimes Unity might not be able to batch objects together. Common reasons include: