NServiceBus.SLAMonitoringConfig.EnableSLAPerformanceCounter C# (CSharp) Method

EnableSLAPerformanceCounter() public static method

Enables the NServiceBus specific performance counters with a specific EndpointSLA.
public static EnableSLAPerformanceCounter ( this config ) : void
config this The instance to apply the settings to.
return void
        public static void EnableSLAPerformanceCounter(this EndpointConfiguration config)
        {
            Guard.AgainstNull(nameof(config), config);
            config.EnableFeature<SLAMonitoring>();
        }
    }

Same methods

SLAMonitoringConfig::EnableSLAPerformanceCounter ( this config, System.TimeSpan sla ) : void
SLAMonitoringConfig