Interface IAppMetricsHistogramValue
Histogram value based on App.Metrics.Histogram.HistogramValue.
Namespace: Dse.AppMetrics.MetricValues
Assembly: Dse.AppMetrics.dll
Syntax
public interface IAppMetricsHistogramValue
Properties
Count
Count of all values recorded in this histogram value.
Declaration
long Count { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
LastValue
Last value that was recorded in this histogram.
Declaration
double LastValue { get; }
Property Value
Type | Description |
---|---|
System.Double |
Max
Maximum value.
Declaration
double Max { get; }
Property Value
Type | Description |
---|---|
System.Double |
Mean
Mean.
Declaration
double Mean { get; }
Property Value
Type | Description |
---|---|
System.Double |
Median
Median.
Declaration
double Median { get; }
Property Value
Type | Description |
---|---|
System.Double |
Min
Minimum value.
Declaration
double Min { get; }
Property Value
Type | Description |
---|---|
System.Double |
Percentile75
75th Percentile.
Declaration
double Percentile75 { get; }
Property Value
Type | Description |
---|---|
System.Double |
Percentile95
95th Percentile.
Declaration
double Percentile95 { get; }
Property Value
Type | Description |
---|---|
System.Double |
Percentile98
98th Percentile.
Declaration
double Percentile98 { get; }
Property Value
Type | Description |
---|---|
System.Double |
Percentile99
99th Percentile.
Declaration
double Percentile99 { get; }
Property Value
Type | Description |
---|---|
System.Double |
Percentile999
99.9th Percentile.
Declaration
double Percentile999 { get; }
Property Value
Type | Description |
---|---|
System.Double |
SampleSize
Sample size.
Declaration
int SampleSize { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
StdDev
Standard deviation.
Declaration
double StdDev { get; }
Property Value
Type | Description |
---|---|
System.Double |
Sum
Sum of all values recorded in this histogram.
Declaration
double Sum { get; }
Property Value
Type | Description |
---|---|
System.Double |