|
@@ -1,11 +1,12 @@
|
|
|
<?php
|
|
<?php
|
|
|
|
|
+declare(strict_types=1);
|
|
|
require_once __DIR__ . '/_bootstrap.php';
|
|
require_once __DIR__ . '/_bootstrap.php';
|
|
|
/**
|
|
/**
|
|
|
* dashboard.php — Query monitoring dashboard
|
|
* dashboard.php — Query monitoring dashboard
|
|
|
* Place in /home/modulos_llm/public/
|
|
* Place in /home/modulos_llm/public/
|
|
|
* DB path read from TPR_DB env var, defaults to /data/telemetry.db
|
|
* DB path read from TPR_DB env var, defaults to /data/telemetry.db
|
|
|
*/
|
|
*/
|
|
|
-declare(strict_types=1);
|
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
$dbPath = getenv('TPR_DB') ?: '/data/telemetry.db';
|
|
$dbPath = getenv('TPR_DB') ?: '/data/telemetry.db';
|
|
|
|
|
|