curl option(실행시간 측정)
curl option 실행시간 측정
curl option
curl 다양한 옵션을 기록합니다.
실행시간 측정
1
curl -o /dev/null -s -w "Time Total: %{time_total}s\n" http://localhost:8080/products
사용한 curl 옵션에 대한 설명은 다음과 같습니다.
옵션 | 설명 |
---|---|
-o /dev/null | 응답 본문 출력 제거 |
-s | 진행 상태 출력 숨김 |
-w | 원하는 응답 메트릭 출력 |
%{time_total} | 요청~응답 완료까지 걸린 총 시간(초 단위) |
This post is licensed under CC BY 4.0 by the author.