| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | // Copyright The OpenTelemetry Authors | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | // SPDX-License-Identifier: Apache-2.0 | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | package metric // import "go.opentelemetry.io/otel/sdk/metric" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | 	"slices" | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"go.opentelemetry.io/otel/sdk/metric/internal/exemplar" | 
					
						
							|  |  |  | 	"go.opentelemetry.io/otel/sdk/metric/internal/x" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // reservoirFunc returns the appropriately configured exemplar reservoir | 
					
						
							|  |  |  | // creation func based on the passed InstrumentKind and user defined | 
					
						
							|  |  |  | // environment variables. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Note: This will only return non-nil values when the experimental exemplar | 
					
						
							|  |  |  | // feature is enabled and the OTEL_METRICS_EXEMPLAR_FILTER environment variable | 
					
						
							|  |  |  | // is not set to always_off. | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | func reservoirFunc[N int64 | float64](agg Aggregation) func() exemplar.FilteredReservoir[N] { | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | 	if !x.Exemplars.Enabled() { | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// https://github.com/open-telemetry/opentelemetry-specification/blob/d4b241f451674e8f611bb589477680341006ad2b/specification/configuration/sdk-environment-variables.md#exemplar | 
					
						
							|  |  |  | 	const filterEnvKey = "OTEL_METRICS_EXEMPLAR_FILTER" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | 	var filter exemplar.Filter | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | 	switch os.Getenv(filterEnvKey) { | 
					
						
							|  |  |  | 	case "always_on": | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | 		filter = exemplar.AlwaysOnFilter | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | 	case "always_off": | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | 		return exemplar.Drop | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | 	case "trace_based": | 
					
						
							|  |  |  | 		fallthrough | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | 		filter = exemplar.SampledFilter | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// https://github.com/open-telemetry/opentelemetry-specification/blob/d4b241f451674e8f611bb589477680341006ad2b/specification/metrics/sdk.md#exemplar-defaults | 
					
						
							|  |  |  | 	// Explicit bucket histogram aggregation with more than 1 bucket will | 
					
						
							|  |  |  | 	// use AlignedHistogramBucketExemplarReservoir. | 
					
						
							|  |  |  | 	a, ok := agg.(AggregationExplicitBucketHistogram) | 
					
						
							|  |  |  | 	if ok && len(a.Boundaries) > 0 { | 
					
						
							|  |  |  | 		cp := slices.Clone(a.Boundaries) | 
					
						
							|  |  |  | 		return func() exemplar.FilteredReservoir[N] { | 
					
						
							|  |  |  | 			bounds := cp | 
					
						
							|  |  |  | 			return exemplar.NewFilteredReservoir[N](filter, exemplar.Histogram(bounds)) | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-08-26 18:05:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	var n int | 
					
						
							|  |  |  | 	if a, ok := agg.(AggregationBase2ExponentialHistogram); ok { | 
					
						
							|  |  |  | 		// Base2 Exponential Histogram Aggregation SHOULD use a | 
					
						
							|  |  |  | 		// SimpleFixedSizeExemplarReservoir with a reservoir equal to the | 
					
						
							|  |  |  | 		// smaller of the maximum number of buckets configured on the | 
					
						
							|  |  |  | 		// aggregation or twenty (e.g. min(20, max_buckets)). | 
					
						
							|  |  |  | 		n = int(a.MaxSize) | 
					
						
							|  |  |  | 		if n > 20 { | 
					
						
							|  |  |  | 			n = 20 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		// https://github.com/open-telemetry/opentelemetry-specification/blob/e94af89e3d0c01de30127a0f423e912f6cda7bed/specification/metrics/sdk.md#simplefixedsizeexemplarreservoir | 
					
						
							|  |  |  | 		//   This Exemplar reservoir MAY take a configuration parameter for | 
					
						
							|  |  |  | 		//   the size of the reservoir. If no size configuration is | 
					
						
							|  |  |  | 		//   provided, the default size MAY be the number of possible | 
					
						
							|  |  |  | 		//   concurrent threads (e.g. number of CPUs) to help reduce | 
					
						
							|  |  |  | 		//   contention. Otherwise, a default size of 1 SHOULD be used. | 
					
						
							|  |  |  | 		n = runtime.NumCPU() | 
					
						
							|  |  |  | 		if n < 1 { | 
					
						
							|  |  |  | 			// Should never be the case, but be defensive. | 
					
						
							|  |  |  | 			n = 1 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return func() exemplar.FilteredReservoir[N] { | 
					
						
							|  |  |  | 		return exemplar.NewFilteredReservoir[N](filter, exemplar.FixedSize(n)) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-11 15:34:34 +01:00
										 |  |  | } |