Microsoft.ApplicationInsights.Extensibility.Implementation.Metrics.SimpleMetricStatisticsAggregator.Track(double)

Here are the examples of the csharp api class Microsoft.ApplicationInsights.Extensibility.Implementation.Metrics.SimpleMetricStatisticsAggregator.Track(double) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ApplicationInsights-dotnet
Source File: Metric.cs
public void Track(double value)
        {
            SimpleMetricStatisticsAggregator aggregator = this.manager.GetStatisticsAggregator(this);
            aggregator.Track(value);

            this.ForwardToProcessors(value);
        }