Version: 2022.1
LanguageEnglish
  • C#

ProfilerRecorder.StartNew

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static Unity.Profiling.ProfilerRecorder StartNew(Unity.Profiling.ProfilerCategory category, string statName, int capacity, Unity.Profiling.ProfilerRecorderOptions options);

Parameters

category Profiler category.
statName Profiler marker or counter name.
capacity Maximum amount of samples to collect.
options ProfilerRecorder options.

Returns

ProfilerRecorder Returns new enabled recorder instance.

Description

Initialize a new instance of ProfilerRecorder and start data collection.

For a list of built-in Profiler markers available, see the User Manual documentation on Memory Profiler module, Rendering Profiler module, and Virtual Texturing Profiler module.

using Unity.Profiling;
using UnityEngine;

public class ExampleScript : MonoBehaviour { ProfilerRecorder systemMemoryRecorder; ProfilerRecorder gcMemoryRecorder; ProfilerRecorder mainThreadTimeRecorder;

void OnEnable() { systemMemoryRecorder = ProfilerRecorder.StartNew(ProfilerCategory.Memory, "System Used Memory"); gcMemoryRecorder = ProfilerRecorder.StartNew(ProfilerCategory.Memory, "GC Reserved Memory"); mainThreadTimeRecorder = ProfilerRecorder.StartNew(ProfilerCategory.Internal, "Main Thread", 15); }

void OnDisable() { systemMemoryRecorder.Dispose(); gcMemoryRecorder.Dispose(); mainThreadTimeRecorder.Dispose(); } }

See Also: ctor.


Declaration

public static Unity.Profiling.ProfilerRecorder StartNew(Unity.Profiling.ProfilerMarker marker, int capacity, Unity.Profiling.ProfilerRecorderOptions options);

Parameters

capacity Maximum amount of samples to be collected.
options Profiler recorder options.
marker Profiler marker instance.

Returns

ProfilerRecorder Returns new enabled recorder instance.

Description

Initialize a new instance of ProfilerRecorder for ProfilerMarker and start data collection.

See Also:: ProfilerMarker.