getExecutionTimes
- 인쇄
- PDF
getExecutionTimes
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
해당 기간 동안 작업 실행 시간을 조회합니다.
GET https://dataflow.apigw.ntruss.com/api/v1/stats/execution-times?startDate={startDate}&endDate={endDate}
요청
요청 파라미터
파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
---|---|---|---|---|
startDate | Yes | String | Datetime(YYYY-MM-DDTHH:mm:ss) | 시작시간 |
endDate | Yes | String | Datetime(YYYY-MM-DDTHH:mm:ss) | 종료시간 |
응답
필드명 | 타입 | 설명 | 비고 |
---|---|---|---|
result[].time | Timestamp | 실행 시간 | |
result[].value | Number | 실행 수 |
응답 Status
HTTP Status | Desc |
---|---|
200 | OK(조회 완료) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
예시
요청 예시
GET /api/v1/stats/execution-times?startDate=2023-10-01T00%3A00%3A00&endDate=2023-10-08T23%3A59%3A59
Host: dataflow.apigw.ntruss.com
x-ncp-iam-access-key: {Access key}
x-ncp-apigw-signature-v2: {API GW signature}
x-ncp-apigw-timestamp: {timestamp}
응답 예시
{
"result": [
{
"time": 1697727600000,
"value": 114
},
{
"time": 1697986800000,
"value": 39
},
{
"time": 1698073200000,
"value": 39
},
{
"time": 1698591600000,
"value": 89
}
]
}
이 문서가 도움이 되었습니까?