获取加速域名原始日志-GetUcdnDomainLog

获取加速域名原始日志

Request Parameters

Parameter nameTypeDescriptionRequired
ProjectIdstring项目ID。不填写为默认项目,子帐号必须填写。 请参考GetProjectList接口No
DomainId.nstring域名ID,创建加速域名时生成。默认全部域名No
BeginTimeint查询的起始时间,格式为Unix Timestamp。如果有EndTime,BeginTime必须赋值。No
EndTimeint查询的结束时间,格式为Unix Timestamp。EndTime默认为当前时间,BeginTime默认为当前时间前一天时间。No
Typeint查询粒度 0=default(没有粒度) 1=按小时 2=按天No

Response Elements

Parameter nameTypeDescriptionRequired
RetCodeint操作返回码Yes
Actionstring操作名称Yes
LogSetarray获取日志的连接地址。具体参考下面LogSetListNo

LogSetList

Parameter nameTypeDescriptionRequired
Domainstring域名No
Logsarray域名信息列表,参考LogSetInfoNo

LogSetInfo

Parameter nameTypeDescriptionRequired
Timeint日志时间UnixTimeNo
CnLogarray国内日志url列表No
AbroadLogarray国外日志url列表No

Request Example

http://api.ucloud.cn/?Action=GetUcdnDomainLog
&ProjectId=xxxxx
&DomainId.0=ucdn-xxx
&BeginTime=1399132800
&EndTime=1399132800

Response Example

{
    "Action": "GetUcdnDomainLogResponse",
    "LogSet": [
        {
            "Domain": "test_01.ucloud.cn",
            "Logs": [
                {
                    "AbroadLog": [
                        "http://test_01.ucloud.cn/test_abroad_01.log"
                    ],
                    "CnLog": [
                        "http://test_01.ucloud.cn/test_cn_01.log"
                    ],
                    "Time": 1399132800
                }
            ]
        },
        {
            "Domain": "test_02.ucloud.cn",
            "Logs": [
                {
                    "AbroadLog": [
                        "http://test_02.ucloud.cn/test_abroad_01.log"
                    ],
                    "CnLog": [
                        "http://test_02.ucloud.cn/test_cn_01.log"
                    ],
                    "Time": 1399132800
                }
            ]
        }
    ],
    "RetCode": 0
}