Did a few things
This commit is contained in:
28
Assets/UserReporting/Scripts/Client/MetricsGatheringMode.cs
Normal file
28
Assets/UserReporting/Scripts/Client/MetricsGatheringMode.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Unity.Cloud.UserReporting.Client
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a metrics gathering mode.
|
||||
/// </summary>
|
||||
public enum MetricsGatheringMode
|
||||
{
|
||||
/// <summary>
|
||||
/// Automatic. Some metrics are gathered automatically.
|
||||
/// </summary>
|
||||
Automatic = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Manual. No metrics are gathered automatically.
|
||||
/// </summary>
|
||||
Manual = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Disabled. No metrics are gathered. Sampling a metric is a no-op.
|
||||
/// </summary>
|
||||
Disabled = 2
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user