Skip to content

Commit

Permalink
Merge pull request #49 from danzel/patch-1
Browse files Browse the repository at this point in the history
Fix links
  • Loading branch information
PaulParau committed Jan 6, 2017
2 parents 2e7e3ba + 8150eca commit 995c1e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Src/Metrics/SamplingType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public enum SamplingType
/// It does so by using a forward-decaying priority reservoir with an exponential weighting towards newer data.
/// Unlike the uniform reservoir, an exponentially decaying reservoir represents recent data, allowing you to know very quickly if the distribution
/// of the data has changed.
/// More information about <a href="http://metrics.codahale.com/manual/core/#man-core-histograms">Exponentially Decaying Reservoir</a>
/// More information about <a href="http://metrics.dropwizard.io/3.1.0/manual/core/#histograms">Exponentially Decaying Reservoir</a>
/// </remarks>
ExponentiallyDecaying,

Expand All @@ -38,14 +38,14 @@ public enum SamplingType
/// It will return a median value, for example, which is the median of all the values the histogram has ever been updated with.
/// Use a uniform histogram when you’re interested in long-term measurements.
/// Don’t use one where you’d want to know if the distribution of the underlying data stream has changed recently.
/// More information about <a href="http://metrics.codahale.com/manual/core/#man-core-histograms">Exponentially Decaying Reservoir</a>
/// More information about <a href="http://metrics.dropwizard.io/3.1.0/manual/core/#histograms">Exponentially Decaying Reservoir</a>
/// </remarks>
LongTerm,

/// <summary>
/// Sampling will done with a Sliding Window Reservoir.
/// A histogram with a sliding window reservoir produces quantiles which are representative of the past N measurements.
/// More information about <a href="http://metrics.codahale.com/manual/core/#man-core-histograms">Exponentially Decaying Reservoir</a>
/// More information about <a href="http://metrics.dropwizard.io/3.1.0/manual/core/#histograms">Exponentially Decaying Reservoir</a>
/// </summary>
SlidingWindow
}
Expand Down

0 comments on commit 995c1e1

Please sign in to comment.