CDN 모니터링 데이터 조회
- 인쇄
- PDF
CDN 모니터링 데이터 조회
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
개요
Global CDN 모니터링 데이터를 조회합니다.
요청
요청 파라미터
파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
---|---|---|---|---|
cdnInstanceNoList.N | Yes | List<String> | CDN 인스턴스 번호 리스트 cdnInstanceNoList.1=2323 | |
startDate | Yes | String | 형식은 'yyyyMMddHH' | 조회 시작 일시 |
endDate | Yes | String | 형식은 'yyyyMMddHH' | 조회 종료 일시 |
responseFormatType | No | String | JSON 또는 XML | 응답 타입 |
응답
모든 응답은 HTTP Status Code으로 성공/실패를 반환합니다.
HTTP 상태 코드 | 코드 메시지 | 설명 |
---|---|---|
200 | Success | 조회 성공 |
401 | Unauthorized | 인증 실패 |
500 | Internal Server Error | 서버 오류 |
속성
항목 | 필수 여부 | 타입 | 설명 |
---|---|---|---|
startDate | No | String | 조회시작일시 'yyyyMMddHH' |
endDate | No | String | 조회종료일시 'yyyyMMddHH' |
aggregation | No | Long | 응답 데이터의 Aggregation 시간 정보 (초 단위) |
bandwidthDataUnit | No | String | Edge 트래픽 단위 (bps) |
bandwidthDataRecordList | No | List<List<Double>> | 트래픽 데이터 목록 |
volumeDataUnit | No | String | Edge 전송량 단위 (byte) |
volumeDataRecordList | No | List<List<Long>> | 전송량 데이터 목록 |
requestDataUnit | No | Long | Edge 요청 단위 (건수) |
requestDataRecordList | No | List<List<Long>> | 요청수 데이터 목록 |
offloadDataUnit | No | String | 히트율 단위 (%) |
offloadDataRecordList | No | List<List<Double>> | 히트율 데이터 목록 |
xxxEdgeHitsDataUnit | No | String | Edge 응답 코드별 수 단위 (건수) |
twoxxEdgeHitsDataRecordList | No | List<List<Long>> | 2xx 응답 코드 수 |
threexxEdgeHitsDataRecordList | No | List<List<Long>> | 3xx 응답 코드 수 |
fourxxEdgeHitsDataRecordList | No | List<List<Long>> | 4xx 응답 코드 수 |
fivexxEdgeHitsDataRecordList | No | List<List<Long>> | 5xx 응답 코드 수 |
pointStart | No | Long | 조회 시작 시각 |
pointInterval | No | Long | aggregation (밀리 세컨드 단위) |
maxBandwidth | No | Double | 기간 내 최대 Edge 트래픽 |
totalVolume | No | Long | 기간 내 총 전송량 |
totalRequest | No | Long | 기간 내 총 요청수 |
maxOffload | No | Double | 기간 내 최대 히트율(%) |
totalTwoxxEdgeHits | No | Long | 기간 내 Edge의 총 2xx 응답 코드 수 |
totalThreexxEdgeHits | No | Long | 기간 내 Edge의 총 3xx 응답 코드 수 |
totalFourxxEdgeHits | No | Long | 기간 내 Edge의 총 4xx 응답 코드 수 |
totalFivexxEdgeHits | No | Long | 기간 내 Edge의 총 5xx 응답 코드 수 |
예시
요청 예시
https://ncloud.apigw.ntruss.com/cdn/v2/getGlobalCdnMonitoringData?cdnInstanceNoList.1=1234&endDate=2022032600&startDate=2022032000&responseFormatType=XML
응답 예시
<getGlobalCdnMonitoringDataResponse>
<requestId>73cf4bd3-f724-4a29-b69c-5785420a425b</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<startDate>2022032000</startDate>
<endDate>2022032600</endDate>
<aggregation>3600</aggregation>
<volumeDataRecordList>
<list>
<long>1648195200000</long>
<int>23751</int>
</list>
<list>
<long>1648198800000</long>
<int>5349332</int>
</list>
</volumeDataRecordList>
<requestDataRecordList>
<list>
<long>1648195200000</long>
<int>12</int>
</list>
<list>
<long>1648198800000</long>
<int>13</int>
</list>
</requestDataRecordList>
<bandwidthDataRecordList>
<list>
<long>1648195200000</long>
<double>1.9933333333333334E-5</double>
</list>
<list>
<long>1648198800000</long>
<double>0.006013422222222222</double>
</list>
</bandwidthDataRecordList>
<offloadDataRecordList>
<list>
<long>1648195200000</long>
<int>0</int>
</list>
<list>
<long>1648198800000</long>
<double>23.076923076923077</double>
</list>
</offloadDataRecordList>
<twoxxEdgeHitsDataRecordList>
<list>
<long>1648195200000</long>
<int>0</int>
</list>
<list>
<long>1648198800000</long>
<int>3</int>
</list>
</twoxxEdgeHitsDataRecordList>
<threexxEdgeHitsDataRecordList>
<list>
<long>1648195200000</long>
<int>0</int>
</list>
<list>
<long>1648198800000</long>
<int>3</int>
</list>
</threexxEdgeHitsDataRecordList>
<fourxxEdgeHitsDataRecordList>
<list>
<long>1648195200000</long>
<int>12</int>
</list>
<list>
<long>1648198800000</long>
<int>7</int>
</list>
</fourxxEdgeHitsDataRecordList>
<fivexxEdgeHitsDataRecordList>
<list>
<long>1648195200000</long>
<int>0</int>
</list>
<list>
<long>1648198800000</long>
<int>0</int>
</list>
</fivexxEdgeHitsDataRecordList>
<volumeDataUnit>bytes</volumeDataUnit>
<requestDataUnit>count</requestDataUnit>
<bandwidthDataUnit>bps</bandwidthDataUnit>
<offloadDataUnit>percent</offloadDataUnit>
<xxxEdgeHitsDataUnit>count</xxxEdgeHitsDataUnit>
<pointStart>1647702000000</pointStart>
<pointInterval>3600000</pointInterval>
<maxBandwidth>0.006013422222222222</maxBandwidth>
<totalVolume>5373083</totalVolume>
<totalRequest>25</totalRequest>
<maxOffload>23.076923076923077</maxOffload>
<totalTwoxxEdgeHits>3</totalTwoxxEdgeHits>
<totalThreexxEdgeHits>3</totalThreexxEdgeHits>
<totalFourxxEdgeHits>19</totalFourxxEdgeHits>
<totalFivexxEdgeHits>0</totalFivexxEdgeHits>
</getGlobalCdnMonitoringDataResponse>
오류 코드
Error 코드 | 설명 |
---|---|
29100 | Invalid Global CDN rule format. |
29101 | Can not operate this Global CDN service. Please check status. |
29102 | Invalid Global CDN purge request. |
29103 | Invalid Global CDN service domain type code. |
29104 | Please enter Forward Host Header. |
29105 | Invalid Origin server. |
29106 | Invalid Origin server ports. |
29107 | Invalid Origin File Storage. |
29108 | Please enter Referrer Domain. |
29109 | Invalid service name. |
29110 | Please enter service domain. |
29111 | Invalid service domain. |
29112 | Invalid Global CDN instance. |
29113 | Only HTTP protocol is allowed when Origin is File Storage. |
29114 | This domain can not set as origin. |
29115 | For HTTPS protocol, only CDN domain can be set. |
29116 | An error occurred in purge request. |
29117 | Invalid origin path. |
29118 | Invalid referrer domain. |
29119 | Invalid rule for access log. |
29120 | Invalid Forward Host Header. |
29121 | Referrer Domains can be added up to 50. |
29122 | Can not request purge for the CDN service. Please check status. |
29123 | The purge function can only be used after about 3 hours after the creation request is made. |
29124 | There is an error in the service domain name entered during the purge request. |
이 문서가 도움이 되었습니까?