阅读本文,您可以获取 PHP SDK 上传数据监控的接口调用示例,实现快速开发。
说明
本文的调用示例包含接口的部分参数。由于参数间可能存在互斥关系,在调用时,请您参考注释,进行调整。
调用接口前,请先完成 PHP SDK 的安装及初始化操作。
本节为您介绍上传数据监控相关接口的功能和调用示例。
您可以调用 DescribeImageXUploadSuccessRateByTime 接口查询上传成功率。详细的参数说明可参见 DescribeImageXUploadSuccessRateByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadSuccessRateByTime($body); print_r($response);
您可以调用 DescribeImageXUploadErrorCodeByTime 接口查询错误码时序数据。详细的参数说明可参见 DescribeImageXUploadErrorCodeByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadErrorCodeByTime($body); print_r($response);
您可以调用 DescribeImageXUploadErrorCodeAll 接口查询错误码分布。详细的参数说明可参见 DescribeImageXUploadErrorCodeAll 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadErrorCodeAll($body); print_r($response);
您可以调用 DescribeImageXUploadCountByTime 接口查询上传有效次数。详细的参数说明可参见 DescribeImageXUploadCountByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadCountByTime($body); print_r($response);
您可以调用 DescribeImageXUploadFileSize 接口查询上传文件大小分布。详细的参数说明可参见 DescribeImageXUploadFileSize 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadFileSize($body); print_r($response);
您可以调用 DescribeImageXUploadDuration 接口查询上传平均耗时。详细的参数说明可参见 DescribeImageXUploadDuration 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadDuration($body); print_r($response);
您可以调用 DescribeImageXUploadSpeed 接口查询上传平均速度。详细的参数说明可参见 DescribeImageXUploadSpeed 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadSpeed($body); print_r($response);
您可以调用 DescribeImageXUploadSegmentSpeedByTime 接口查询上传分片速度。详细的参数说明可参见 DescribeImageXUploadSegmentSpeedByTime 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->describeImageXUploadSegmentSpeedByTime($body); print_r($response);