go.opencensus.io/stats/view.Aggregation.Buckets (field)

10 uses

	go.opencensus.io/stats/view (current package)
		aggregation.go#L46: 	Buckets []float64 // Buckets are the bucket endpoints if this Aggregation represents a distribution, see Distribution.
		aggregation.go#L104: 		Buckets: bounds,
		aggregation_data.go#L132: 	bucketCount := len(agg.Buckets) + 1
		aggregation_data.go#L136: 		bounds:             agg.Buckets,
		view.go#L97: 	sort.Float64s(v.Aggregation.Buckets)
		view.go#L98: 	for _, b := range v.Aggregation.Buckets {
		view.go#L104: 	v.Aggregation.Buckets = dropZeroBounds(v.Aggregation.Buckets...)

	contrib.go.opencensus.io/exporter/stackdriver
		stats.go#L503: 		insertZeroBound := shouldInsertZeroBound(vd.Aggregation.Buckets...)
		stats.go#L517: 							Bounds: addZeroBoundOnCondition(insertZeroBound, vd.Aggregation.Buckets...),