1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00
appwrite/app/tasks/usage.php

245 lines
11 KiB
PHP
Raw Normal View History

2021-08-10 20:44:31 +12:00
<?php
global $cli, $register;
2021-08-10 20:44:31 +12:00
require_once __DIR__ . '/../init.php';
2021-08-10 20:44:31 +12:00
use Utopia\App;
use Utopia\Cache\Adapter\Redis;
use Utopia\Cache\Cache;
2021-08-10 20:44:31 +12:00
use Utopia\CLI\Console;
use Utopia\Database\Adapter\MariaDB;
use Utopia\Database\Database;
use Utopia\Database\Document;
use Utopia\Database\Query;
use Utopia\Database\Validator\Authorization;
2021-08-10 20:44:31 +12:00
$cli
->task('usage')
->desc('Schedules syncing data from influxdb to Appwrite console db')
->action(function () use ($register) {
2021-08-10 20:44:31 +12:00
Console::title('Usage Sync V1');
Console::success(APP_NAME . ' usage sync process v1 has started');
2021-08-15 20:41:19 +12:00
$interval = (int) App::getEnv('_APP_USAGE_AGGREGATION_INTERVAL', '30'); //30 seconds
2021-08-13 21:45:46 +12:00
$attempts = 0;
$max = 10;
$sleep = 1;
do {
try {
$attempts++;
$db = $register->get('db');
$redis = $register->get('cache');
break; // leave the do-while if successful
} catch (\Exception$e) {
Console::warning("Database not ready. Retrying connection ({$attempts})...");
if ($attempts >= $max) {
throw new \Exception('Failed to connect to database: ' . $e->getMessage());
}
sleep($sleep);
}
} while ($attempts < $max);
2021-08-10 20:44:31 +12:00
2021-08-15 20:38:31 +12:00
$cacheAdapter = new Cache(new Redis($redis));
2021-08-13 21:45:46 +12:00
$dbForConsole = new Database(new MariaDB($db), $cacheAdapter);
$dbForConsole->setNamespace('project_console_internal');
2021-08-13 21:45:46 +12:00
$dbForProject = new Database(new MariaDB($db), $cacheAdapter);
2021-08-10 20:44:31 +12:00
Authorization::disable();
$projectIds = [];
2021-08-12 23:11:33 +12:00
$latestProject = null;
$latestData = [];
2021-08-12 23:11:33 +12:00
do {
$projects = $dbForConsole->find('projects', [], 100, orderAfter:$latestProject);
if (!empty($projects)) {
$latestProject = $projects[array_key_last($projects)];
2021-08-13 21:45:46 +12:00
$latestData = getLatestData($projects, $latestData, $dbForProject, $projectIds);
2021-08-12 23:11:33 +12:00
}
} while (!empty($projects));
$projects = null;
2021-08-10 20:44:31 +12:00
$firstRun = true;
2021-08-12 23:11:33 +12:00
Console::loop(function () use ($interval, $register, &$projectIds, &$latestData, $dbForProject, $dbForConsole, &$firstRun, &$latestProject) {
$time = date('d-m-Y H:i:s', time());
Console::info("[{$time}] Syncing usage data from influxdb to Appwrite Console DB every {$interval} seconds");
if (!$firstRun) {
2021-08-12 23:11:33 +12:00
$projects = $dbForConsole->find('projects', limit:100, orderAfter:$latestProject);
if (!empty($projects)) {
$latestProject = $projects[array_key_last($projects)];
2021-08-13 21:45:46 +12:00
$latestData = getLatestData($projects, $latestData, $dbForProject, $projectIds);
}
}
$client = $register->get('influxdb');
if ($client) {
foreach ($projectIds as $id => $value) {
2021-08-13 21:50:18 +12:00
syncData($client, $id, $latestData, $dbForProject);
}
}
$firstRun = false;
}, $interval);
2021-08-10 20:44:31 +12:00
});
2021-08-13 21:45:46 +12:00
function getLatestData(&$projects, &$latestData, $dbForProject, &$projectIds)
2021-08-12 23:11:33 +12:00
{
foreach ($projects as $project) {
$id = $project->getId();
$projectIds[$id] = true;
$dbForProject->setNamespace("project_{$id}_internal");
2021-08-15 20:38:31 +12:00
foreach (['requests', 'network', 'executions', 'database.reads'] as $metric) {
2021-08-15 20:32:01 +12:00
$doc = $dbForProject->findOne('stats', [new Query("period", Query::TYPE_EQUAL, ["1d"]), new Query("metric", Query::TYPE_EQUAL, [$metric])], 0, ['time'], [Database::ORDER_DESC]);
$latestData[$id][$metric]["1d"] = $doc ? $doc->getAttribute('time') : null;
$doc = $dbForProject->findOne('stats', [new Query("period", Query::TYPE_EQUAL, ["30m"])], 0, ['time'], [Database::ORDER_DESC]);
$latestData[$id][$metric]["30m"] = $doc ? $doc->getAttribute('time') : null;
}
2021-08-12 23:11:33 +12:00
}
$projects = null;
return $latestData;
}
2021-08-13 21:50:18 +12:00
function syncData($client, $projectId, &$latestData, $dbForProject)
{
2021-08-13 21:50:18 +12:00
foreach (['30m', '1d'] as $period) {
2021-08-15 20:32:01 +12:00
$start = DateTime::createFromFormat('U', \strtotime($period == '1d' ? '-90 days' : '-24 hours'))->format(DateTime::RFC3339);
2021-08-13 21:50:18 +12:00
$end = DateTime::createFromFormat('U', \strtotime('now'))->format(DateTime::RFC3339);
$database = $client->selectDB('telegraf');
$dbForProject->setNamespace("project_{$projectId}_internal");
2021-08-15 20:32:01 +12:00
foreach (['requests', 'network', 'executions'] as $metric) {
if (!empty($latestData[$projectId][$metric][$period])) {
$start = DateTime::createFromFormat('U', $latestData[$projectId][$metric][$period])->format(DateTime::RFC3339);
}
syncMetric($database, $projectId, $period, 'requests', $start, $end, $dbForProject);
}
syncMetricPaths($database, $projectId, $period, $start, $end, $dbForProject);
}
2021-08-13 21:50:18 +12:00
2021-08-15 20:32:01 +12:00
}
function syncMetricPaths($database, $projectId, $period, $start, $end, $dbForProject)
{
$start = DateTime::createFromFormat('U', \strtotime($period == '1d' ? '-7 days' : '-24 hours'))->format(DateTime::RFC3339);
if (!empty($latestData[$projectId]['database'][$period])) {
2021-08-15 20:38:31 +12:00
$start = DateTime::createFromFormat('U', $latestData[$projectId]['database.reads'][$period])->format(DateTime::RFC3339);
}
2021-08-15 20:32:01 +12:00
$result = $database->query('SELECT sum(value) AS "value" FROM "appwrite_usage_requests_all" WHERE time > \'' . $start . '\' AND time < \'' . $end . '\' AND "metric_type"=\'counter\' AND "project"=\'' . $projectId . '\'GROUP BY time(' . $period . '), "path", "method" FILL(null)');
$points = $result->getPoints();
2021-08-13 21:50:18 +12:00
2021-08-15 20:32:01 +12:00
$databaseMetrics = [
'creates' => [
'method' => 'post',
'paths' => [
'/v1/database/collections' => true,
'/v1/database/collections/*collectionId/attributes/string' => true,
'/v1/database/collections/*collectionId/attributes/email' => true,
'/v1/database/collections/*collectionId/attributes/ip' => true,
'/v1/database/collections/*collectionId/attributes/url' => true,
'/v1/database/collections/*collectionId/attributes/integer' => true,
'/v1/database/collections/*collectionId/attributes/float' => true,
'/v1/database/collections/*collectionId/attributes/boolean' => true,
'/v1/database/collections/*collectionId/indexes' => true,
'/v1/database/collections/*collectionId/documents' => true,
],
],
'reads' => [
'method' => 'get',
'paths' => [
'/v1/database/collections' => true,
'/v1/database/collections/*collectionId' => true,
'/v1/database/collections/*collectionId/attributes' => true,
'/v1/database/collections/*collectionId/attributes/*attributeId' => true,
'/v1/database/collections/*collectionId/indexes' => true,
'/v1/database/collections/*collectionId/indexes/*indexId' => true,
'/v1/database/collections/*collectionId/documents' => true,
'/v1/database/collections/*collectionId/documents/*documentId' => true,
],
],
'updates' => [
'method' => 'put',
'paths' => [
'/v1/database/collections/*collectionId' => true,
'/v1/database/collections/*collectionId/documents/*documentId' => true,
],
],
'deletes' => [
'method' => 'delete',
'paths' => [
'/v1/database/collections/*collectionId' => true,
'/v1/database/collections/*collectionId/attributes/*attributeId' => true,
'/v1/database/collections/*collectionId/indexes/*indexId' => true,
'/v1/database/collections/*collectionId/documents/*documentId' => true,
],
],
];
$dbStats = [];
foreach ($points as $point) {
$time = \strtotime($point['time']);
$value = (!empty($point['value'])) ? $point['value'] : 0;
$path = $point['path'] ?? '';
$method = $point['method'] ?? '';
foreach (['creates', 'reads', 'updates', 'deletes'] as $operation) {
if ($method == $databaseMetrics[$operation]['method']
&& array_key_exists($path, $databaseMetrics[$operation]['paths'])) {
if (empty($dbStats["database.{$operation}"][$period][$time])) {
$dbStats["database.{$operation}"][$period][$time] = 0;
}
$dbStats["database.{$operation}"][$period][$time] += $value;
}
}
}
$time = \strtotime($start);
foreach ($dbStats as $metric => $stats) {
foreach ($stats as $period => $times) {
foreach ($times as $time => $value) {
$id = \md5($time . '_' . $period . '_' . $metric);
$document = $dbForProject->getDocument('stats', $id);
if ($document->isEmpty()) {
$dbForProject->createDocument('stats', new Document([
'$id' => $id,
'period' => $period,
'time' => $time,
'metric' => $metric,
'value' => $value,
'type' => 0,
]));
} else {
$dbForProject->updateDocument('stats', $document->getId(),
$document->setAttribute('value', $value));
}
}
}
}
2021-08-15 20:38:31 +12:00
$latestData[$projectId]['database.reads'][$period] = $time;
2021-08-13 21:45:46 +12:00
}
2021-08-13 21:45:46 +12:00
function syncMetric($database, $projectId, $period, $metric, $start, $end, $dbForProject)
{
$result = $database->query('SELECT sum(value) AS "value" FROM "appwrite_usage_' . $metric . '_all" WHERE time > \'' . $start . '\' AND time < \'' . $end . '\' AND "metric_type"=\'counter\' AND "project"=\'' . $projectId . '\'GROUP BY time(' . $period . ') FILL(null)');
$points = $result->getPoints();
foreach ($points as $point) {
$time = \strtotime($point['time']);
2021-08-13 21:45:46 +12:00
$id = \md5($time . '_' . $period . '_' . $metric);
$value = (!empty($point['value'])) ? $point['value'] : 0;
$document = $dbForProject->getDocument('stats', $id);
if ($document->isEmpty()) {
$dbForProject->createDocument('stats', new Document([
'$id' => $id,
'period' => $period,
'time' => $time,
2021-08-13 21:45:46 +12:00
'metric' => $metric,
'value' => $value,
'type' => 0,
]));
} else {
$dbForProject->updateDocument('stats', $document->getId(),
$document->setAttribute('value', $value));
}
2021-08-15 20:32:01 +12:00
$latestData[$projectId][$metric][$period] = $time;
}
}