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

Breadcrumb

  1. Drupal Core 11.1.x

Signals.php

Namespace

OpenTelemetry\API

File

vendor/open-telemetry/api/Signals.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\API;

interface Signals {
    
    /** @var string  */
    public const TRACE = 'trace';
    
    /** @var string  */
    public const METRICS = 'metrics';
    
    /** @var string  */
    public const LOGS = 'logs';
    
    /** @var string[]  */
    public const SIGNALS = [
        self::TRACE,
        self::METRICS,
        self::LOGS,
    ];

}

Interfaces

Title Deprecated Summary
Signals

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal