Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ NotNullConstraintViolationException
Show exception properties
Doctrine\DBAL\Exception\NotNullConstraintViolationException {#750 -query: Doctrine\DBAL\Query {#748 -sql: """ \r\n INSERT INTO asic_uptime_bucket\r\n (location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)\r\n SELECT\r\n ? AS location_id,\r\n d.asic_id,\r\n d.client_id,\r\n d.client_name,\r\n 'hour' AS granularity,\r\n d.period_start,\r\n d.online,\r\n ? AS updated_at\r\n FROM (\r\n SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online\r\n ) d\r\n ON DUPLICATE KEY UPDATE\r\n online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),\r\n updated_at = VALUES(updated_at),\r\n client_name = VALUES(client_name)\r\n """ -params: array:32 [ 0 => 2 1 => "2026-03-23 14:10:23" 2 => 13 3 => 2 4 => "ivan" 5 => "2026-03-23 14:00:00" 6 => 30 7 => 1 8 => 2 9 => "ivan" 10 => "2026-03-23 14:00:00" 11 => 30 12 => 9 13 => 2 14 => "ivan" 15 => "2026-03-23 14:00:00" 16 => 0 17 => 16 18 => 2 19 => "ivan" 20 => "2026-03-23 14:00:00" 21 => 0 22 => 8 23 => 2 24 => "ivan" 25 => "2026-03-23 14:00:00" 26 => 0 27 => 15 28 => 2 29 => "ivan" 30 => "2026-03-23 14:00:00" 31 => 0 ] -types: [] } }
1138,1171,1252,1263,1364,1566 => new NotNullConstraintViolationException($exception, $query),default => new DriverException($exception, $query),};}}
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1460)
private function handleDriverException(Driver\Exception $driverException,?Query $query,): DriverException {$this->exceptionConverter ??= $this->driver->getExceptionConverter();$exception = $this->exceptionConverter->convert($driverException, $query);if ($exception instanceof ConnectionLost) {$this->close();}
in
vendor/doctrine/dbal/src/Connection.php
->
handleDriverException
(line 1396)
Driver\Exception $e,string $sql,array $params = [],array $types = [],): DriverException {return $this->handleDriverException($e, new Query($sql, $params, $types));}/** @internal */final public function convertException(Driver\Exception $e): DriverException{
in
vendor/doctrine/dbal/src/Connection.php
->
convertExceptionDuringQuery
(line 911)
->rowCount();}return $connection->exec($sql);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);}}/*** Returns the current transaction nesting level.
Connection->executeStatement('
INSERT INTO asic_uptime_bucket
(location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)
SELECT
? AS location_id,
d.asic_id,
d.client_id,
d.client_name,
\'hour\' AS granularity,
d.period_start,
d.online,
? AS updated_at
FROM (
SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online
) d
ON DUPLICATE KEY UPDATE
online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),
updated_at = VALUES(updated_at),
client_name = VALUES(client_name)
', array(2, '2026-03-23 14:10:23', 13, 2, 'ivan', '2026-03-23 14:00:00', 30, 1, 2, 'ivan', '2026-03-23 14:00:00', 30, 9, 2, 'ivan', '2026-03-23 14:00:00', 0, 16, 2, 'ivan', '2026-03-23 14:00:00', 0, 8, 2, 'ivan', '2026-03-23 14:00:00', 0, 15, 2, 'ivan', '2026-03-23 14:00:00', 0))
in
src/Service/UptimeBucketWriter.php
(line 94)
// порядок важен: сначала location_id, потом updated_at, потом параметры derived-таблицыarray_unshift($params, $updatedAtMsk);array_unshift($params, $locationId);$this->conn->executeStatement($sql, $params);}}
UptimeBucketWriter->upsertHourDeltas(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')))
in
src/Service/UptimeBucketWriter.php
(line 43)
public function addHourSamplesBulk(int $locationId, array $deltas, int $chunkSize = 1000): void{if ($deltas === []) return;foreach (array_chunk($deltas, $chunkSize) as $chunk) {$this->upsertHourDeltas($locationId, $chunk);}}private function upsertHourDeltas(int $locationId, array $rows): void{
UptimeBucketWriter->addHourSamplesBulk(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')), 1000)
in
src/Controller/Api/AgentApiController.php
(line 304)
if ($asicMaxTs !== []) {$this->batchUpdateAsicStatus($asicMaxTs, 500);}if ($bucketDeltas !== []) {$this->bucketWriter->addHourSamplesBulk(locationId: $location->getId(),deltas: array_values($bucketDeltas),chunkSize: 1000);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
samples
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 24)
} else {$code = $exception->getCode();$sqlState = null;}return new self($exception->getMessage(), $sqlState, $code, $exception);}}
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
::
new
(line 57)
public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 905)
$stmt = $connection->prepare($sql);$this->bindParameters($stmt, $params, $types);return $stmt->execute()->rowCount();}return $connection->exec($sql);} catch (Driver\Exception $e) {
Connection->executeStatement('
INSERT INTO asic_uptime_bucket
(location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)
SELECT
? AS location_id,
d.asic_id,
d.client_id,
d.client_name,
\'hour\' AS granularity,
d.period_start,
d.online,
? AS updated_at
FROM (
SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online
) d
ON DUPLICATE KEY UPDATE
online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),
updated_at = VALUES(updated_at),
client_name = VALUES(client_name)
', array(2, '2026-03-23 14:10:23', 13, 2, 'ivan', '2026-03-23 14:00:00', 30, 1, 2, 'ivan', '2026-03-23 14:00:00', 30, 9, 2, 'ivan', '2026-03-23 14:00:00', 0, 16, 2, 'ivan', '2026-03-23 14:00:00', 0, 8, 2, 'ivan', '2026-03-23 14:00:00', 0, 15, 2, 'ivan', '2026-03-23 14:00:00', 0))
in
src/Service/UptimeBucketWriter.php
(line 94)
// порядок важен: сначала location_id, потом updated_at, потом параметры derived-таблицыarray_unshift($params, $updatedAtMsk);array_unshift($params, $locationId);$this->conn->executeStatement($sql, $params);}}
UptimeBucketWriter->upsertHourDeltas(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')))
in
src/Service/UptimeBucketWriter.php
(line 43)
public function addHourSamplesBulk(int $locationId, array $deltas, int $chunkSize = 1000): void{if ($deltas === []) return;foreach (array_chunk($deltas, $chunkSize) as $chunk) {$this->upsertHourDeltas($locationId, $chunk);}}private function upsertHourDeltas(int $locationId, array $rows): void{
UptimeBucketWriter->addHourSamplesBulk(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')), 1000)
in
src/Controller/Api/AgentApiController.php
(line 304)
if ($asicMaxTs !== []) {$this->batchUpdateAsicStatus($asicMaxTs, 500);}if ($bucketDeltas !== []) {$this->bucketWriter->addHourSamplesBulk(locationId: $location->getId(),deltas: array_values($bucketDeltas),chunkSize: 1000);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
samples
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
->
execute
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 905)
$stmt = $connection->prepare($sql);$this->bindParameters($stmt, $params, $types);return $stmt->execute()->rowCount();}return $connection->exec($sql);} catch (Driver\Exception $e) {
Connection->executeStatement('
INSERT INTO asic_uptime_bucket
(location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)
SELECT
? AS location_id,
d.asic_id,
d.client_id,
d.client_name,
\'hour\' AS granularity,
d.period_start,
d.online,
? AS updated_at
FROM (
SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online
) d
ON DUPLICATE KEY UPDATE
online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),
updated_at = VALUES(updated_at),
client_name = VALUES(client_name)
', array(2, '2026-03-23 14:10:23', 13, 2, 'ivan', '2026-03-23 14:00:00', 30, 1, 2, 'ivan', '2026-03-23 14:00:00', 30, 9, 2, 'ivan', '2026-03-23 14:00:00', 0, 16, 2, 'ivan', '2026-03-23 14:00:00', 0, 8, 2, 'ivan', '2026-03-23 14:00:00', 0, 15, 2, 'ivan', '2026-03-23 14:00:00', 0))
in
src/Service/UptimeBucketWriter.php
(line 94)
// порядок важен: сначала location_id, потом updated_at, потом параметры derived-таблицыarray_unshift($params, $updatedAtMsk);array_unshift($params, $locationId);$this->conn->executeStatement($sql, $params);}}
UptimeBucketWriter->upsertHourDeltas(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')))
in
src/Service/UptimeBucketWriter.php
(line 43)
public function addHourSamplesBulk(int $locationId, array $deltas, int $chunkSize = 1000): void{if ($deltas === []) return;foreach (array_chunk($deltas, $chunkSize) as $chunk) {$this->upsertHourDeltas($locationId, $chunk);}}private function upsertHourDeltas(int $locationId, array $rows): void{
UptimeBucketWriter->addHourSamplesBulk(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')), 1000)
in
src/Controller/Api/AgentApiController.php
(line 304)
if ($asicMaxTs !== []) {$this->batchUpdateAsicStatus($asicMaxTs, 500);}if ($bucketDeltas !== []) {$this->bucketWriter->addHourSamplesBulk(locationId: $location->getId(),deltas: array_values($bucketDeltas),chunkSize: 1000);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
samples
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 23:32:16 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "59b005"
},
"request_uri": "https://dc-mining-monitoring-new-test.test.itlabs.top/_profiler/59b005?panel=exception&type=request",
"method": "GET"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "ContainerMbIaxxG\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerMbIaxxG\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "ContainerMbIaxxG\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerMbIaxxG\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Csrf\\SameOriginCsrfTokenManager::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "ContainerMbIaxxG\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerMbIaxxG\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
|
| DEBUG 23:32:16 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
Stack Traces 3
|
[3/3]
NotNullConstraintViolationException
|
|---|
Doctrine\DBAL\Exception\NotNullConstraintViolationException:
An exception occurred while executing a query: SQLSTATE[HY000]: General error: 1364 Field 'expected_seconds' doesn't have a default value
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:101
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1460)
at Doctrine\DBAL\Connection->handleDriverException(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1396)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Exception), '
INSERT INTO asic_uptime_bucket
(location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)
SELECT
? AS location_id,
d.asic_id,
d.client_id,
d.client_name,
\'hour\' AS granularity,
d.period_start,
d.online,
? AS updated_at
FROM (
SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online
) d
ON DUPLICATE KEY UPDATE
online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),
updated_at = VALUES(updated_at),
client_name = VALUES(client_name)
', array(2, '2026-03-23 14:10:23', 13, 2, 'ivan', '2026-03-23 14:00:00', 30, 1, 2, 'ivan', '2026-03-23 14:00:00', 30, 9, 2, 'ivan', '2026-03-23 14:00:00', 0, 16, 2, 'ivan', '2026-03-23 14:00:00', 0, 8, 2, 'ivan', '2026-03-23 14:00:00', 0, 15, 2, 'ivan', '2026-03-23 14:00:00', 0), array())
(vendor/doctrine/dbal/src/Connection.php:911)
at Doctrine\DBAL\Connection->executeStatement('
INSERT INTO asic_uptime_bucket
(location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)
SELECT
? AS location_id,
d.asic_id,
d.client_id,
d.client_name,
\'hour\' AS granularity,
d.period_start,
d.online,
? AS updated_at
FROM (
SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online
) d
ON DUPLICATE KEY UPDATE
online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),
updated_at = VALUES(updated_at),
client_name = VALUES(client_name)
', array(2, '2026-03-23 14:10:23', 13, 2, 'ivan', '2026-03-23 14:00:00', 30, 1, 2, 'ivan', '2026-03-23 14:00:00', 30, 9, 2, 'ivan', '2026-03-23 14:00:00', 0, 16, 2, 'ivan', '2026-03-23 14:00:00', 0, 8, 2, 'ivan', '2026-03-23 14:00:00', 0, 15, 2, 'ivan', '2026-03-23 14:00:00', 0))
(src/Service/UptimeBucketWriter.php:94)
at App\Service\UptimeBucketWriter->upsertHourDeltas(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')))
(src/Service/UptimeBucketWriter.php:43)
at App\Service\UptimeBucketWriter->addHourSamplesBulk(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')), 1000)
(src/Controller/Api/AgentApiController.php:304)
at App\Controller\Api\AgentApiController->samples(object(Request))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000]: General error: 1364 Field 'expected_seconds' doesn't have a default value
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:57)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:905)
at Doctrine\DBAL\Connection->executeStatement('
INSERT INTO asic_uptime_bucket
(location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)
SELECT
? AS location_id,
d.asic_id,
d.client_id,
d.client_name,
\'hour\' AS granularity,
d.period_start,
d.online,
? AS updated_at
FROM (
SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online
) d
ON DUPLICATE KEY UPDATE
online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),
updated_at = VALUES(updated_at),
client_name = VALUES(client_name)
', array(2, '2026-03-23 14:10:23', 13, 2, 'ivan', '2026-03-23 14:00:00', 30, 1, 2, 'ivan', '2026-03-23 14:00:00', 30, 9, 2, 'ivan', '2026-03-23 14:00:00', 0, 16, 2, 'ivan', '2026-03-23 14:00:00', 0, 8, 2, 'ivan', '2026-03-23 14:00:00', 0, 15, 2, 'ivan', '2026-03-23 14:00:00', 0))
(src/Service/UptimeBucketWriter.php:94)
at App\Service\UptimeBucketWriter->upsertHourDeltas(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')))
(src/Service/UptimeBucketWriter.php:43)
at App\Service\UptimeBucketWriter->addHourSamplesBulk(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')), 1000)
(src/Controller/Api/AgentApiController.php:304)
at App\Controller\Api\AgentApiController->samples(object(Request))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[HY000]: General error: 1364 Field 'expected_seconds' doesn't have a default value
at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55
at PDOStatement->execute()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:905)
at Doctrine\DBAL\Connection->executeStatement('
INSERT INTO asic_uptime_bucket
(location_id, asic_id, client_id, client_name, granularity, period_start, online_seconds, updated_at)
SELECT
? AS location_id,
d.asic_id,
d.client_id,
d.client_name,
\'hour\' AS granularity,
d.period_start,
d.online,
? AS updated_at
FROM (
SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online UNION ALL SELECT ? AS asic_id, ? AS client_id, ? AS client_name, ? AS period_start, ? AS online
) d
ON DUPLICATE KEY UPDATE
online_seconds = asic_uptime_bucket.online_seconds + VALUES(online_seconds),
updated_at = VALUES(updated_at),
client_name = VALUES(client_name)
', array(2, '2026-03-23 14:10:23', 13, 2, 'ivan', '2026-03-23 14:00:00', 30, 1, 2, 'ivan', '2026-03-23 14:00:00', 30, 9, 2, 'ivan', '2026-03-23 14:00:00', 0, 16, 2, 'ivan', '2026-03-23 14:00:00', 0, 8, 2, 'ivan', '2026-03-23 14:00:00', 0, 15, 2, 'ivan', '2026-03-23 14:00:00', 0))
(src/Service/UptimeBucketWriter.php:94)
at App\Service\UptimeBucketWriter->upsertHourDeltas(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')))
(src/Service/UptimeBucketWriter.php:43)
at App\Service\UptimeBucketWriter->addHourSamplesBulk(2, array(array('asic_id' => 13, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 1, 'period_start' => '2026-03-23 14:00:00', 'online' => 30, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 9, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 16, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 8, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan'), array('asic_id' => 15, 'period_start' => '2026-03-23 14:00:00', 'online' => 0, 'client_id' => 2, 'client_name' => 'ivan')), 1000)
(src/Controller/Api/AgentApiController.php:304)
at App\Controller\Api\AgentApiController->samples(object(Request))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/vendor/autoload_runtime.php')
(public/index.php:5)
|