All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.applicationinsights.telemetry.BaseSampleSourceTelemetry Maven / Gradle / Ivy

package com.microsoft.applicationinsights.telemetry;

import com.microsoft.applicationinsights.internal.schemav2.Domain;
import com.microsoft.applicationinsights.internal.schemav2.Envelope;

/**
 * Created by gupele on 12/4/2016.
 */
public abstract class BaseSampleSourceTelemetry extends BaseTelemetry implements SupportSampling {

    @Override
    public void reset() {
        setSamplingPercentage(null);
    }


    @Override
    protected void setSampleRate(Envelope envelope) {
        Double currentSP = getSamplingPercentage();
        if (currentSP != null) {
            envelope.setSampleRate(currentSP);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy