/// <summary>
        /// Disables standard telemetry services on the server
        /// WARNING!: Disabling telemetry services can bring some extra performance to the server (even if perhaps imperceptible). However it will not be possible to collect metrics to implement improvements in your code
        /// </summary>
        protected void DisableTelemetryServices()
        {
            ICoreServerService coreServer = Services.GetService <ICoreServerService>();

            coreServer.DisableTelemetryServices();
        }
Example #2
0
 public void DisableTelemetryServices()
 {
     realServer.DisableTelemetryServices();
 }