| // This file was auto-generated by the veyron vdl tool. |
| // Packages stats defines the non-native types exported by the stats service. |
| // HistogramValue is the value of Histogram objects. |
| type HistogramValue struct { |
| // Count is the total number of values added to the histogram. |
| // Sum is the sum of all the values added to the histogram. |
| // Min is the minimum of all the values added to the histogram. |
| // Max is the maximum of all the values added to the histogram. |
| // Buckets contains all the buckets of the histogram. |
| Buckets []HistogramBucket |
| func (HistogramValue) __VDLReflect(struct { |
| Name string "v.io/core/veyron/services/mgmt/stats.HistogramValue" |
| // HistogramBucket is one histogram bucket. |
| type HistogramBucket struct { |
| // LowBound is the lower bound of the bucket. |
| // Count is the number of values in the bucket. |
| func (HistogramBucket) __VDLReflect(struct { |
| Name string "v.io/core/veyron/services/mgmt/stats.HistogramBucket" |
| vdl.Register((*HistogramValue)(nil)) |
| vdl.Register((*HistogramBucket)(nil)) |