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

Breadcrumb

  1. Drupal Core 11.1.x

Temporality.php

Namespace

OpenTelemetry\SDK\Metrics\Data

File

vendor/open-telemetry/sdk/Metrics/Data/Temporality.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Metrics\Data;


/**
 * Metric aggregation temporality.
 *
 * Has to be type-hinted as `string|Temporality` to be forward compatible.
 * @todo convert to enum (php >= 8.1)
 */
final class Temporality {
    public const DELTA = 'Delta';
    public const CUMULATIVE = 'Cumulative';
    private function __construct() {
    }

}

Classes

Title Deprecated Summary
Temporality Metric aggregation temporality.
RSS feed
Powered by Drupal