70 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
// Copyright The OpenTelemetry Authors
 | 
						|
// SPDX-License-Identifier: Apache-2.0
 | 
						|
 | 
						|
// Code generated by "pdata/internal/cmd/pdatagen/main.go". DO NOT EDIT.
 | 
						|
// To regenerate this file run "make genpdata".
 | 
						|
 | 
						|
package pmetric
 | 
						|
 | 
						|
import (
 | 
						|
	"go.opentelemetry.io/collector/pdata/internal"
 | 
						|
	otlpmetrics "go.opentelemetry.io/collector/pdata/internal/data/protogen/metrics/v1"
 | 
						|
)
 | 
						|
 | 
						|
// Histogram represents the type of a metric that is calculated by aggregating as a Histogram of all reported measurements over a time interval.
 | 
						|
//
 | 
						|
// This is a reference type, if passed by value and callee modifies it the
 | 
						|
// caller will see the modification.
 | 
						|
//
 | 
						|
// Must use NewHistogram function to create new instances.
 | 
						|
// Important: zero-initialized instance is not valid for use.
 | 
						|
type Histogram struct {
 | 
						|
	orig  *otlpmetrics.Histogram
 | 
						|
	state *internal.State
 | 
						|
}
 | 
						|
 | 
						|
func newHistogram(orig *otlpmetrics.Histogram, state *internal.State) Histogram {
 | 
						|
	return Histogram{orig: orig, state: state}
 | 
						|
}
 | 
						|
 | 
						|
// NewHistogram creates a new empty Histogram.
 | 
						|
//
 | 
						|
// This must be used only in testing code. Users should use "AppendEmpty" when part of a Slice,
 | 
						|
// OR directly access the member if this is embedded in another struct.
 | 
						|
func NewHistogram() Histogram {
 | 
						|
	state := internal.StateMutable
 | 
						|
	return newHistogram(&otlpmetrics.Histogram{}, &state)
 | 
						|
}
 | 
						|
 | 
						|
// MoveTo moves all properties from the current struct overriding the destination and
 | 
						|
// resetting the current instance to its zero value
 | 
						|
func (ms Histogram) MoveTo(dest Histogram) {
 | 
						|
	ms.state.AssertMutable()
 | 
						|
	dest.state.AssertMutable()
 | 
						|
	*dest.orig = *ms.orig
 | 
						|
	*ms.orig = otlpmetrics.Histogram{}
 | 
						|
}
 | 
						|
 | 
						|
// AggregationTemporality returns the aggregationtemporality associated with this Histogram.
 | 
						|
func (ms Histogram) AggregationTemporality() AggregationTemporality {
 | 
						|
	return AggregationTemporality(ms.orig.AggregationTemporality)
 | 
						|
}
 | 
						|
 | 
						|
// SetAggregationTemporality replaces the aggregationtemporality associated with this Histogram.
 | 
						|
func (ms Histogram) SetAggregationTemporality(v AggregationTemporality) {
 | 
						|
	ms.state.AssertMutable()
 | 
						|
	ms.orig.AggregationTemporality = otlpmetrics.AggregationTemporality(v)
 | 
						|
}
 | 
						|
 | 
						|
// DataPoints returns the DataPoints associated with this Histogram.
 | 
						|
func (ms Histogram) DataPoints() HistogramDataPointSlice {
 | 
						|
	return newHistogramDataPointSlice(&ms.orig.DataPoints, ms.state)
 | 
						|
}
 | 
						|
 | 
						|
// CopyTo copies all properties from the current struct overriding the destination.
 | 
						|
func (ms Histogram) CopyTo(dest Histogram) {
 | 
						|
	dest.state.AssertMutable()
 | 
						|
	dest.SetAggregationTemporality(ms.AggregationTemporality())
 | 
						|
	ms.DataPoints().CopyTo(dest.DataPoints())
 | 
						|
}
 |