OpenTelemetry SDK
    Preparing search index...

    Type Alias Base2ExponentialBucketHistogramAggregationConfigModel

    Base2ExponentialBucketHistogramAggregationConfigModel:
        | {
            max_scale?: number
            | null;
            max_size?: number | null;
            record_min_max?: boolean | null;
        }
        | null

    Configures the stream to collect data for the exponential histogram metric point, which uses a base-2 exponential formula to determine bucket boundaries and an integer scale parameter to control resolution. See https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk.md#base2-exponential-bucket-histogram-aggregation for details. If omitted, ignore.

    Type Declaration

    • {
          max_scale?: number | null;
          max_size?: number | null;
          record_min_max?: boolean | null;
      }
      • Optionalmax_scale?: number | null

        Configure the max scale factor. If omitted or null, 20 is used.

      • Optionalmax_size?: number | null

        Configure the maximum number of buckets in each of the positive and negative ranges, not counting the special zero bucket. If omitted or null, 160 is used.

      • Optionalrecord_min_max?: boolean | null

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

    • null