OpenTelemetry SDK
    Preparing search index...

    Type Alias ExplicitBucketHistogramAggregationConfigModel

    ExplicitBucketHistogramAggregationConfigModel:
        | { boundaries?: number[]; record_min_max?: boolean
        | null }
        | null

    Configures the stream to collect data for the histogram metric point using a set of explicit boundary values for histogram bucketing. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk.md#explicit-bucket-histogram-aggregation for details If omitted, ignore.

    Type Declaration

    • { boundaries?: number[]; record_min_max?: boolean | null }
      • Optionalboundaries?: number[]

        Configure bucket boundaries. If omitted, [0, 5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500, 10000] is used.

        0

      • Optionalrecord_min_max?: boolean | null

        Configure record min and max. If omitted or null, true is used.

    • null