diff options
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 116 |
1 files changed, 110 insertions, 6 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { +Extension [ <persistent> extension #115 ddtrace version 1.3.0 ] { - Dependencies { Dependency [ json (Required) ] @@ -115,9 +115,18 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Entry [ datadog.trace.laravel_queue_distributed_tracing <ALL> ] Current = 'true' } + Entry [ datadog.trace.symfony_messenger_distributed_tracing <ALL> ] + Current = 'true' + } + Entry [ datadog.trace.symfony_messenger_middlewares <ALL> ] + Current = 'false' + } Entry [ datadog.trace.remove_root_span_laravel_queue <ALL> ] Current = 'true' } + Entry [ datadog.trace.remove_root_span_symfony_messenger <ALL> ] + Current = 'true' + } Entry [ datadog.trace.remove_autoinstrumentation_orphans <ALL> ] Current = 'false' } @@ -197,7 +206,7 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Current = '-1' } Entry [ datadog.log_backtrace <ALL> ] - Current = 'false' + Current = 'true' } Entry [ datadog.trace.generate_root_span <ALL> ] Current = 'true' @@ -289,6 +298,9 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Entry [ datadog.trace.agent_stack_backlog <SYSTEM> ] Current = '12' } + Entry [ datadog.trace.agent_test_session_token <ALL> ] + Current = '' + } Entry [ datadog.trace.propagate_user_id_default <ALL> ] Current = 'false' } @@ -316,6 +328,9 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Entry [ datadog.appsec.sca_enabled <SYSTEM> ] Current = 'false' } + Entry [ datadog.appsec.testing <ALL> ] + Current = 'false' + } Entry [ datadog.trace.git_metadata_enabled <ALL> ] Current = 'true' } @@ -841,6 +856,21 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Entry [ datadog.symfony_analytics_sample_rate <ALL> ] Current = '1' } + Entry [ datadog.trace.symfonymessenger_enabled <ALL> ] + Current = 'true' + } + Entry [ datadog.trace.symfonymessenger_analytics_enabled <ALL> ] + Current = '0' + } + Entry [ datadog.symfonymessenger_analytics_enabled <ALL> ] + Current = '0' + } + Entry [ datadog.trace.symfonymessenger_analytics_sample_rate <ALL> ] + Current = '1' + } + Entry [ datadog.symfonymessenger_analytics_sample_rate <ALL> ] + Current = '1' + } Entry [ datadog.trace.web_enabled <ALL> ] Current = 'true' } @@ -911,7 +941,7 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Constant [ int DDTrace\DBM_PROPAGATION_FULL ] { 2 } Constant [ int DDTrace\Internal\SPAN_FLAG_OPENTELEMETRY ] { 1 } Constant [ int DDTrace\Internal\SPAN_FLAG_OPENTRACING ] { 2 } - Constant [ string DD_TRACE_VERSION ] { 1.2.0 } + Constant [ string DD_TRACE_VERSION ] { 1.3.0 } Constant [ int DD_TRACE_PRIORITY_SAMPLING_AUTO_KEEP ] { 1 } Constant [ int DD_TRACE_PRIORITY_SAMPLING_AUTO_REJECT ] { 0 } Constant [ int DD_TRACE_PRIORITY_SAMPLING_USER_KEEP ] { 2 } @@ -1460,7 +1490,7 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { } } - - Classes [9] { + - Classes [11] { Class [ <internal:ddtrace> class DDTrace\HookData ] { - Constants [0] { @@ -1592,7 +1622,7 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { - Static methods [0] { } - - Properties [15] { + - Properties [16] { Property [ public ?string $name = '' ] Property [ public ?string $resource = '' ] Property [ public ?string $service = '' ] @@ -1605,6 +1635,7 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Property [ public ?Throwable $exception = NULL ] Property [ public readonly string $id ] Property [ public array $links = [] ] + Property [ public array $events = [] ] Property [ public array $peerServiceSources = [] ] Property [ public readonly ?DDTrace\SpanData $parent ] Property [ public readonly DDTrace\SpanStack $stack ] @@ -1652,7 +1683,7 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { - Static methods [0] { } - - Properties [24] { + - Properties [25] { Property [ public ?string $name = '' ] Property [ public ?string $resource = '' ] Property [ public ?string $service = '' ] @@ -1665,6 +1696,7 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { Property [ public ?Throwable $exception = NULL ] Property [ public readonly string $id ] Property [ public array $links = [] ] + Property [ public array $events = [] ] Property [ public array $peerServiceSources = [] ] Property [ public readonly ?DDTrace\SpanData $parent ] Property [ public readonly DDTrace\SpanStack $stack ] @@ -1885,6 +1917,78 @@ Extension [ <persistent> extension #109 ddtrace version 1.2.0 ] { } } + Class [ <internal:ddtrace> class DDTrace\SpanEvent implements JsonSerializable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ public string $name ] + Property [ public array $attributes ] + Property [ public int $timestamp ] + } + + - Methods [2] { + Method [ <internal:ddtrace, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> string $name ] + Parameter #1 [ <optional> array $attributes = [] ] + Parameter #2 [ <optional> ?int $timestamp = null ] + } + } + + Method [ <internal:ddtrace, prototype JsonSerializable> public method jsonSerialize ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + } + } + + Class [ <internal:ddtrace> class DDTrace\ExceptionSpanEvent extends DDTrace\SpanEvent implements JsonSerializable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ public string $name ] + Property [ public array $attributes ] + Property [ public int $timestamp ] + Property [ public Throwable $exception ] + } + + - Methods [2] { + Method [ <internal:ddtrace, overwrites DDTrace\SpanEvent, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> Throwable $exception ] + Parameter #1 [ <optional> array $attributes = [] ] + } + } + + Method [ <internal:ddtrace, inherits DDTrace\SpanEvent, prototype JsonSerializable> public method jsonSerialize ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + } + } + Class [ <internal:ddtrace> class DDTrace\GitMetadata ] { - Constants [0] { |