using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Unity.Cloud.UserReporting.Client
{
///
/// Represents a metrics gathering mode.
///
public enum MetricsGatheringMode
{
///
/// Automatic. Some metrics are gathered automatically.
///
Automatic = 0,
///
/// Manual. No metrics are gathered automatically.
///
Manual = 1,
///
/// Disabled. No metrics are gathered. Sampling a metric is a no-op.
///
Disabled = 2
}
}