728x90
반응형
curl을 사용하여 웹사이트 로딩 속도를 테스트하는 방법
curl은 다양한 시간 지표를 제공하며 이를 통해 웹사이트의 성능을 분석할 수 있습니다.
1. 기본적인 시간 지표 확인
curl의 -w 또는 --write-out 옵션을 사용하여 웹사이트 요청에 대한 다양한 시간 지표를 출력할 수 있습니다.
curl -o /dev/null -s -w "
time_namelookup: %{time_namelookup}
time_connect: %{time_connect}
time_appconnect: %{time_appconnect}
time_pretransfer: %{time_pretransfer}
time_starttransfer: %{time_starttransfer}
time_total: %{time_total}
" https://www.scbyun.com
time_namelookup: 0.079524
time_connect: 0.081354
time_appconnect: 0.175526
time_pretransfer: 0.175664
time_starttransfer: 0.244997
time_total: 0.249004
지표의 의미
- time_namelookup : DNS 조회 시간 (초 단위)
- time_connect : TCP 연결 설정 시간 (3-way handshake)
- time_appconnect : SSL/TLS 핸드셰이크 시간 (HTTPS인 경우)
- time_pretransfer : 요청 전송 시작까지의 시간
- time_starttransfer : 첫 번째 바이트가 도착하기까지의 시간
- time_total : 전체 요청 완료 시간
.curl-format.txt 파일 생성
cat <<EOF > .curl-format.txt
time_namelookup: %{time_namelookup}\n
time_connect: %{time_connect}\n
time_appconnect: %{time_appconnect}\n
time_pretransfer: %{time_pretransfer}\n
time_redirect: %{time_redirect}\n
time_starttransfer: %{time_starttransfer}\n
----------\n
time_total: %{time_total}\n
EOF
curl 명령어 실행
curl -w "@.curl-format.txt" -o /dev/null -s https://www.scbyun.com
time_namelookup: 0.042699
time_connect: 0.044980
time_appconnect: 0.131618
time_pretransfer: 0.131731
time_redirect: 0.000000
time_starttransfer: 0.248625
----------
time_total: 0.252253
- 결과 해석
- time_total : 전체 요청 시간이 길다면 네트워크 지연, 서버 처리 시간, 또는 콘텐츠 크기 문제일 수 있습니다.
- time_starttransfer : 첫 번째 바이트 도착 시간이 길다면 서버 처리 시간이 오래 걸린다는 의미입니다.
- time_namelookup : DNS 조회 시간이 길다면 DNS 서버 문제일 수 있습니다.
- time_connect : TCP 연결 시간이 길다면 네트워크 지연 문제일 수 있습니다.
2. 특정 시간 지표만 확인
특정 시간 지표만 확인하려면 -w 옵션에 원하는 지표만 지정하면 됩니다.
curl -o /dev/null -s -w "time_total: %{time_total}\n" https://www.scbyun.com
time_total: 0.253120
3. 반복 테스트
웹사이트의 로딩 속도를 여러 번 테스트하여 평균값을 구하려면 스크립트를 사용할 수 있습니다.
for i in {1..5}; do
curl -o /dev/null -s -w "Test $i: time_total=%{time_total}\n" https://www.scbyun.com
done
Test 1: time_total=0.567
Test 2: time_total=0.512
Test 3: time_total=0.589
Test 4: time_total=0.543
Test 5: time_total=0.556
4. 고급: 모든 시간 지표를 파일로 저장
테스트 결과를 파일로 저장하려면 리다이렉션(>>)을 사용하면 됩니다.
curl -o /dev/null -s -w "time_total: %{time_total}\n" https://www.scbyun.com >> result.txt
$ cat result.txt
time_total: 0.211487
5. HTTP/2 또는 HTTP/1.1 테스트
curl은 기본적으로 HTTP/1.1을 사용합니다.
curl -o /dev/null -s -w "time_total: %{time_total}\n" --http2 https://www.scbyun.com
time_total: 0.300359
6. 헤더 정보 포함
응답 헤더를 포함하여 테스트하려면 -I 옵션을 사용합니다
curl -I -s -w "time_total: %{time_total}\n" https://www.scbyun.com
HTTP/2 200
date: Wed, 12 Mar 2025 04:24:47 GMT
content-type: text/html;charset=UTF-8
content-length: 37199
t_userid: 0826ed9142f95d1706c3df338402157c2f0db26d
set-cookie: REACTION_GUEST=eaa71b7a07bb5ae408b3e6d665db51cc155dfe7f
x-content-type-options: nosniff
x-xss-protection: 0
cache-control: no-cache, no-store, max-age=0, must-revalidate
pragma: no-cache
expires: 0
strict-transport-security: max-age=31536000 ; includeSubDomains
time_total: 0.207909
7. POST 요청 테스트
POST 요청으로 로딩 속도를 테스트하려면 -d 옵션을 사용합니다.
curl -o /dev/null -s -w "time_total: %{time_total}\n" -X POST -d "param1=value1¶m2=value2" https://www.scbyun.com
8. 스크립트로 자동화
여러 URL을 테스트하고 결과를 요약하는 스크립트입니다.
vim curl-test.sh
#!/bin/bash
urls=(
"https://www.scbyun.com"
"https://linux.scbyun.com"
"https://cloud.scbyun.com"
"https://code.scbyun.com"
)
for url in "${urls[@]}"; do
time_total=$(curl -o /dev/null -s -w "%{time_total}" "$url")
printf "%-25s | time_total: %s\n" "$url" "$time_total"
done
chmod +x curl-test.sh
bash curl-test.sh
https://www.scbyun.com | time_total: 0.201424
https://linux.scbyun.com | time_total: 0.356458
https://cloud.scbyun.com | time_total: 0.223497
https://code.scbyun.com | time_total: 0.219689
웹사이트의 로딩 속도를 테스트하고 성능 병목 현상을 분석할 수 있습니다.
참고URL
- 변군이글루 블로그 : curl 명령어
curl -o/dev/null -s -w "time_total : %{time_total} \ n"-x post -d "past -d"param1 = value1 = value2 "https://www.scbyun.com
728x90
반응형
'Linux Distribution' 카테고리의 다른 글
SSH 키를 생성하고 원격 서버에 배포하여 접속하는 방법 (0) | 2025.03.15 |
---|---|
Bash 자동 완성을 설정하는 방법 (0) | 2025.03.12 |
우분투에서 multipathd를 비활성화하는 방법 (0) | 2025.03.10 |
우분투에서 시스템의 아키텍처를 확인하는 방법 (0) | 2025.03.10 |
우분투 24.04에서 snapd 비활성화 및 삭제 방법 (0) | 2025.03.09 |