Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. HistogramBucketReservoir.php

function HistogramBucketReservoir::__construct

Parameters

list<float|int> $boundaries:

File

vendor/open-telemetry/sdk/Metrics/Exemplar/HistogramBucketReservoir.php, line 22

Class

HistogramBucketReservoir

Namespace

OpenTelemetry\SDK\Metrics\Exemplar

Code

public function __construct(array $boundaries) {
    $this->storage = new BucketStorage(count($boundaries) + 1);
    $this->boundaries = $boundaries;
}
RSS feed
Powered by Drupal