- Add comprehensive health check system with multiple endpoints - Add Prometheus metrics endpoint - Add production logging configurations (5 strategies) - Add complete deployment documentation suite: * QUICKSTART.md - 30-minute deployment guide * DEPLOYMENT_CHECKLIST.md - Printable verification checklist * DEPLOYMENT_WORKFLOW.md - Complete deployment lifecycle * PRODUCTION_DEPLOYMENT.md - Comprehensive technical reference * production-logging.md - Logging configuration guide * ANSIBLE_DEPLOYMENT.md - Infrastructure as Code automation * README.md - Navigation hub * DEPLOYMENT_SUMMARY.md - Executive summary - Add deployment scripts and automation - Add DEPLOYMENT_PLAN.md - Concrete plan for immediate deployment - Update README with production-ready features All production infrastructure is now complete and ready for deployment.
62 lines
2.4 KiB
PHP
62 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
use App\Framework\ErrorAggregation\ErrorEvent;
|
|
use App\Framework\DateTime\Clock;
|
|
use App\Framework\Core\ValueObjects\Timestamp;
|
|
use App\Framework\Exception\Core\DatabaseErrorCode;
|
|
use App\Framework\Exception\FrameworkException;
|
|
use App\Framework\Exception\ExceptionContext;
|
|
use App\Framework\Exception\RequestContext;
|
|
use App\Framework\Exception\SystemContext;
|
|
use App\Framework\Exception\ErrorHandlerContext;
|
|
|
|
// Create test clock
|
|
$clock = new class implements Clock {
|
|
public function now(): \DateTimeImmutable { return new \DateTimeImmutable(); }
|
|
public function fromTimestamp(Timestamp $timestamp): \DateTimeImmutable { return $timestamp->toDateTime(); }
|
|
public function fromString(string $dateTime, ?string $format = null): \DateTimeImmutable { return new \DateTimeImmutable($dateTime); }
|
|
public function today(): \DateTimeImmutable { return new \DateTimeImmutable('today'); }
|
|
public function yesterday(): \DateTimeImmutable { return new \DateTimeImmutable('yesterday'); }
|
|
public function tomorrow(): \DateTimeImmutable { return new \DateTimeImmutable('tomorrow'); }
|
|
public function time(): Timestamp { return Timestamp::now(); }
|
|
};
|
|
|
|
echo "Creating exception and context...\n";
|
|
$exception = FrameworkException::create(
|
|
DatabaseErrorCode::QUERY_FAILED,
|
|
'Test database query failed'
|
|
);
|
|
|
|
$exceptionContext = ExceptionContext::empty()
|
|
->withOperation('test_operation', 'TestComponent')
|
|
->withData(['test_key' => 'test_value']);
|
|
|
|
$requestContext = RequestContext::fromGlobals();
|
|
$systemContext = SystemContext::current();
|
|
|
|
$errorHandlerContext = ErrorHandlerContext::create(
|
|
$exceptionContext,
|
|
$requestContext,
|
|
$systemContext,
|
|
['http_status' => 500]
|
|
);
|
|
|
|
echo "Creating ErrorEvent directly...\n";
|
|
try {
|
|
$errorEvent = ErrorEvent::fromErrorHandlerContext($errorHandlerContext, $clock);
|
|
echo "SUCCESS: ErrorEvent created\n";
|
|
echo " ID: " . $errorEvent->id->toString() . "\n";
|
|
echo " Service: " . $errorEvent->service . "\n";
|
|
echo " Component: " . $errorEvent->component . "\n";
|
|
echo " Operation: " . $errorEvent->operation . "\n";
|
|
echo " Error Message: " . $errorEvent->errorMessage . "\n";
|
|
} catch (\Throwable $e) {
|
|
echo "ERROR creating ErrorEvent: " . $e->getMessage() . "\n";
|
|
echo "Exception class: " . get_class($e) . "\n";
|
|
echo "Stack trace:\n" . $e->getTraceAsString() . "\n";
|
|
}
|