Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links #49

Merged
merged 1 commit into from
Jan 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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