# GetItemMergedSampleCallstack(int, int, List<ulong>)

> Gets the callstack associated with the specified hierarchy item.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor.Profiling](/engine/6000.7/script-reference/unityeditor/profiling.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public void GetItemMergedSampleCallstack(int id, int sampleIndex, List<ulong> outCallstack)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Hierarchy item identifier.**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Merged sample index.**** (\[List\<ulong>]\(https\://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)): List filled with callstack pointers as a result of a method call.

### Remarks

When the callstack collection mode is enabled for certain profiler markers (such as GC.Alloc), the profiler writes the callstack to the data stream. The callstack refers to the instruction pointer stack. Instruction pointers can be resolved into function names which you can the use to identify the sample origin in the source code. *GetItemCallstack* retrieves the callstack as a list of pointers. Each list entry represents a function call.

Use [FrameDataView.ResolveMethodInfo](/engine/6000.7/script-reference/unityeditor/profiling/framedataview/resolvemethodinfo.md) to get funtion name and location information for the instruction pointer.
