File: Model\InstrumentKind.cs
Web Access
Project: src\src\Generators\Microsoft.Gen.Metrics\Microsoft.Gen.Metrics.csproj (Microsoft.Gen.Metrics)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.Gen.Metrics.Model;
 
internal enum InstrumentKind
{
    None = 0,
    Counter = 1,
    Histogram = 2,
    Gauge = 3,
    CounterT = 4,
    HistogramT = 5,
}