본문 바로가기
Etc.

[JMeter] HTML DashBoard 생성하기

by _Chavi 2020. 11. 22.

JMeter에서 측정한 지표와 값을 HTML로 작성된 DashBoard로 출력하는 방법을 기록합니다.(참조)

 

방법

1. user.properties 설정 - bin디렉터리에 있는 파일의 설정값들을 수정합니다.

# 이전 생략..

# Configure this property to change the report title
jmeter.reportgenerator.report_title=Apache JMeter Dashboard

# 중략..

# Default date format (from SimpleDateFormat Java API and Locale.ENGLISH)
jmeter.reportgenerator.date_format=yyyyMMddHHmmss

# 중략

# Change this parameter if you want to change the granularity of over time graphs.
jmeter.reportgenerator.overall_granularity=1000

# 중략..

# Change this parameter if you want to override the APDEX satisfaction threshold.
jmeter.reportgenerator.apdex_satisfied_threshold=500

# 중략..

# Change this parameter if you want to override the APDEX tolerance threshold.
jmeter.reportgenerator.apdex_tolerated_threshold=1500

# 이후 생략..

 

2. View Results Tree의 값 csv 파일로 추출

01
FileName을 설정해주면 bin 디렉터리에 생성됩니다

 

3. HTML DashBoard 생성

01

 

결과

Listener를 추가하면 Charts 카테고리에 표시 됩니다

 

 

댓글