/
Wild_RNB
/
ASU
Обзор
Документация
Войти
/
Wild_RNB
/
ASU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/Runtime/Observability.php
22 строки
440 B
am190620045-afk
Add unified runtime observability provider
15 июл 2026, 22:21
15 июл 2026, 22:21
0912131
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace ASU\Runtime; final class Observability { public function __construct( private readonly Metrics $metrics, private readonly Performance $performance ) { } public function report(float $bootSeconds): array { return [ 'metrics' => $this->metrics->all(), 'performance' => $this->performance->check($bootSeconds), ]; } }