File: Metrics\ConsoleMetrics.cs
Web Access
Project: src\src\libraries\Microsoft.Extensions.Diagnostics\src\Microsoft.Extensions.Diagnostics.csproj (Microsoft.Extensions.Diagnostics)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.Extensions.Diagnostics.Metrics
{
    /// <summary>
    /// Provides constants for the Console metrics listener.
    /// </summary>
    public static class ConsoleMetrics
    {
        /// <summary>
        /// Gets the name of the listener used in configuration and enabling instruments.
        /// </summary>
        public static string DebugListenerName => "DebugConsole";
    }
}