コード例 #1
0
        public void TelemetryConfigurationAllowsToManageLastKnownSampleRate()
        {
            var configuration = new TelemetryConfiguration();

            configuration.SetLastObservedSamplingPercentage(DataContracts.SamplingTelemetryItemTypes.Request, 10);
            Assert.AreEqual(configuration.GetLastObservedSamplingPercentage(DataContracts.SamplingTelemetryItemTypes.Request), 10);
        }