mirror of
https://github.com/appwrite/appwrite
synced 2026-05-16 13:38:27 +00:00
63 lines
1.7 KiB
PHP
63 lines
1.7 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Appwrite\Utopia\Response\Model;
|
||
|
|
|
||
|
|
use Appwrite\Utopia\Response;
|
||
|
|
use Appwrite\Utopia\Response\Model;
|
||
|
|
|
||
|
|
class UsageFunction extends Model
|
||
|
|
{
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this
|
||
|
|
->addRule('range', [
|
||
|
|
'type' => self::TYPE_STRING,
|
||
|
|
'description' => 'The time range of the usage stats.',
|
||
|
|
'default' => '',
|
||
|
|
'example' => '30d',
|
||
|
|
])
|
||
|
|
->addRule('functionsExecutions', [
|
||
|
|
'type' => Response::MODEL_METRIC_LIST,
|
||
|
|
'description' => 'Aggregated stats for function executions.',
|
||
|
|
'default' => [],
|
||
|
|
'example' => new \stdClass(),
|
||
|
|
'array' => true
|
||
|
|
])
|
||
|
|
->addRule('functionsFailures', [
|
||
|
|
'type' => Response::MODEL_METRIC_LIST,
|
||
|
|
'description' => 'Aggregated stats for function execution failures.',
|
||
|
|
'default' => [],
|
||
|
|
'example' => new \stdClass(),
|
||
|
|
'array' => true
|
||
|
|
])
|
||
|
|
->addRule('functionsCompute', [
|
||
|
|
'type' => Response::MODEL_METRIC_LIST,
|
||
|
|
'description' => 'Aggregated stats for function execution duration.',
|
||
|
|
'default' => [],
|
||
|
|
'example' => new \stdClass(),
|
||
|
|
'array' => true
|
||
|
|
])
|
||
|
|
;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get Name
|
||
|
|
*
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getName(): string
|
||
|
|
{
|
||
|
|
return 'UsageFunction';
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get Type
|
||
|
|
*
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getType(): string
|
||
|
|
{
|
||
|
|
return Response::MODEL_USAGE_FUNCTION;
|
||
|
|
}
|
||
|
|
}
|