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

com.microsoft.applicationinsights.web.internal.perfcounter.WebPerformanceCounterModule Maven / Gradle / Ivy

There is a newer version: 3.5.4
Show newest version
package com.microsoft.applicationinsights.web.internal.perfcounter;

import com.microsoft.applicationinsights.internal.annotation.PerformanceModule;
import com.microsoft.applicationinsights.internal.perfcounter.AbstractPerformanceCounterModule;

/**
 * Created by gupele on 3/12/2015.
 */
@PerformanceModule("BuiltIn")
public final class WebPerformanceCounterModule extends AbstractPerformanceCounterModule {
    public WebPerformanceCounterModule() {
        this(new DefaultWebPerformanceCountersFactory());
    }

    WebPerformanceCounterModule(WebPerformanceCountersFactory factory) {
        super(factory);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy