100% Free Forever
AI-Powered Learning
Industry Expert Content
Certificates & Badges
Learn At Your Own Pace
Testing

Aggregate Report and Graphs

Learn to read JMeter's Aggregate Report percentile columns, understand the limits of GUI graph listeners, and generate CI-friendly HTML dashboard reports from the command line.

Assertions & ListenersIntermediate9 min readJul 10, 2026
Analogies

Aggregate Report: Percentiles and Throughput

Aggregate Report groups samples by label like Summary Report, but adds the columns that matter most for real SLA analysis: 90% Line, 95% Line, and 99% Line, representing the response time under which that percentage of requests completed. This matters because Average can hide a long tail of slow requests — a label with an average of 300ms could still have a 99th percentile of 4 seconds if a small fraction of requests are severely degraded, and that tail is often exactly what real users experience as 'the site feels slow sometimes.' Alongside percentiles, it reports Throughput (requests/second the server actually sustained, not the rate JMeter attempted to send) and Error %, making it the standard listener for post-run performance sign-off.

🏏

Cricket analogy: Relying on average response time is like judging a bowler purely by economy rate across a whole innings without checking if a couple of overs conceded 20 runs each — the 99th percentile is like flagging those specific expensive overs that the average smooths over.

Graph Results and Other Visualizations

The Graph Results listener plots response time as a live line chart during a GUI-mode run, and Response Time Graph does something similar but grouped over configurable time intervals. Both are useful for a quick visual sense of trend during small debugging runs, but they share the same fundamental problem as View Results Tree: they retain data points in memory and render continuously, so they become a bottleneck and a source of skewed results the moment you scale thread count up for a genuine load test. For serious visualization at scale, the JMeter community and Apache's own documentation steer users toward exporting .jtl results and feeding them into purpose-built tools — Grafana backed by InfluxDB via the Backend Listener, or JMeter's own built-in HTML Dashboard Report generator — rather than trusting any in-GUI graph listener for a high-concurrency run.

🏏

Cricket analogy: Relying on Graph Results at scale is like a scorer trying to hand-draw a run-rate worm chart in real time during a T20 game with a required rate of 12 an over — by the time you've drawn one over's point, three more deliveries have already happened.

Generating HTML Dashboard Reports from CLI

JMeter ships a built-in HTML Dashboard Report generator that turns a .jtl results file into a rich, static report with response time percentile graphs, throughput-over-time charts, and APDEX scoring, without needing any GUI listener active during the actual run. You can generate it either inline during a non-GUI test run using the -e -o flags, or afterward from an existing results file using -g. This is the standard approach for CI/CD pipelines: run the load test headless, produce the .jtl, generate the dashboard as a build artifact, and archive or publish it so the team can review performance trends without ever opening JMeter's GUI.

🏏

Cricket analogy: Generating a post-match HTML dashboard is like producing the full statistical scorecard and Manhattan chart after the game ends rather than trying to compile it ball-by-ball live — the analysis happens from the recorded data, not during play.

bash
# Run the test headless and generate the HTML dashboard report in one step
jmeter -n -t checkout_test.jmx -l results.jtl -e -o report_output/

# Or generate the dashboard afterward from an existing .jtl file
jmeter -g results.jtl -o report_output/

# report_output/index.html contains APDEX, response time percentiles,
# throughput-over-time, and active-threads-over-time charts

The -o output directory must not already exist (or must be empty) when using -e -o in the same run — JMeter will refuse to overwrite a non-empty directory, which is a common CI pipeline gotcha; clean the directory before each run.

Aggregate Report's percentile values are calculated only from the samples present in that specific run/listener instance. If you merge multiple .jtl files or filter samples externally before loading them, percentiles must be recalculated from the full merged dataset — you cannot average percentiles from separate partial reports.

  • Aggregate Report adds 90%/95%/99% Line percentile columns to the per-label metrics that Summary Report already shows.
  • Percentiles reveal the slow-request tail that an Average figure can hide entirely.
  • Graph Results and Response Time Graph are live GUI charts, useful only for small-scale debugging, not real load tests.
  • For scaled visualization, export .jtl data to Grafana/InfluxDB via the Backend Listener or use JMeter's built-in HTML Dashboard Report.
  • The -e -o flags generate the dashboard report inline during a non-GUI run; -g generates it afterward from an existing .jtl.
  • The dashboard's output directory must be empty or nonexistent, or JMeter will refuse to write to it.
  • Percentiles cannot be averaged across separate partial reports — recompute from the full merged sample set.

Practice what you learned

Was this page helpful?

Topics covered

#Testing#JMeterStudyNotes#TestingQA#AggregateReportAndGraphs#Aggregate#Report#Graphs#Percentiles#DataStructures#StudyNotes#SkillVeris

Frequently Asked Questions

21 categories · pick one to explore

Where can I get free study notes for programming and tech subjects?
SkillVeris offers completely free study notes covering programming and tech subjects, with no signup fees or paywalls. The notes are structured by course and topic, written for quick understanding, and enriched with the Learn Through Hobbies analogy method, so you can revise concepts through cricket, music, gaming, cooking and more.
Are SkillVeris study notes good for exam revision?
Yes, the study notes are designed for efficient revision: each topic answers its heading immediately, keeps explanations concise, and links to related glossary terms and cheat sheets. Students preparing for university exams or certification tests use them as quick revision notes because they distil concepts without the padding of full textbooks.
What subjects do the free study notes cover?
The study notes span the platform's main domains, including AI and machine learning, Python and programming, web development, DevOps, cloud, security and databases. Coverage mirrors the 37 live courses, so notes exist for the topics you are actually studying, and new note sets are added as courses launch.
How are SkillVeris study notes different from regular textbooks?
The notes are answer-first, concise and free, whereas textbooks are long and often expensive. Each section explains one concept directly, then reinforces it through selectable hobby analogies like cricket or cooking. Notes also cross-link to the glossary, blog and cheat sheets, letting you jump to related material instantly instead of flipping pages.
Can I use the developer study material without creating an account?
The study notes are free to access, and SkillVeris does not charge anything for its developer study material at any point. Browsing notes is straightforward from the Study Notes section, and if you want progress tracking, certificates and AI Mentor conversations tied to your learning, a free account unlocks those extras.
Do the study notes explain concepts with analogies?
Yes, this is a signature SkillVeris feature. Study notes use the Learn Through Hobbies method, explaining technical concepts through analogies from twelve domains including cricket, music, gaming, photography, travel, movies, fitness, chess, cooking, finance, business and sports. You can switch the analogy domain instantly to whichever hobby makes the concept click.
Are the revision notes suitable for last-minute exam preparation?
Yes, revision notes on SkillVeris work well for last-minute preparation because every section states the answer in its first sentences, so skimming is genuinely effective. Pair them with the relevant cheat sheet for formulas and syntax, and use the glossary for any unfamiliar term you meet while cramming.
Is there free study material for AI and machine learning?
Yes, SkillVeris provides free study notes across its AI and ML catalogue, covering Python for AI, deep learning frameworks like PyTorch and TensorFlow, Hugging Face Transformers, Large Language Models, RAG, AI agents and MLOps. All of it is free, making it a strong resource for Indian students and global learners alike.
Can beginners understand the study notes, or are they for experts?
Beginners can absolutely use them. The notes are written in plain language, define terms as they appear, and lean on hobby analogies to make abstract ideas concrete. Difficulty scales with the underlying course level, so beginner-course notes stay gentle while advanced-course notes go deeper, and the glossary supports you throughout.
How do study notes connect with SkillVeris courses?
Study notes are organised by course and topic, so they map directly to the structured courses and their 24–40-lesson curriculum. Many learners study a lesson first, then use the matching notes for revision before module assessments and the final exam, where 80 percent is required to pass and earn the certificate.
Are there study notes for Python specifically?
Yes, Python is well covered through notes tied to the Python-focused courses, including Python for AI and ML. Topics span fundamentals through applied machine learning usage. You can reinforce the notes with Python practice in Code Lab, which runs code in your browser with no installation required.
Do the study notes include code examples?
Yes, study notes include code examples wherever a concept is best shown in code, alongside explanations, key points and analogies. Reading a snippet in the notes and then reproducing it yourself in Code Lab is an effective loop, since Code Lab lets you run code in the browser across six languages.
How often is new study material added to SkillVeris?
Study material grows alongside the course catalogue. Whenever new courses join the platform's 37 live courses, matching study notes, glossary entries and cheat sheets are added so the resources stay in sync. Existing notes are also refined over time, so it is worth revisiting topics you studied earlier.
Can I use SkillVeris notes to prepare for technical interviews?
Yes, the notes make excellent interview revision because they compress each concept into direct, answer-first explanations, which mirrors how you should answer interview questions. Combine them with the SkillVeris interview questions feature, which includes readiness scoring, to test whether your revision has actually made you interview-ready.
Are the study notes mobile-friendly for studying on the go?
Yes, the study notes are built to load fast and read comfortably on mobile devices, so you can revise during a commute or between classes. Sections are short and answer-first, which suits small screens, and analogy switching works on mobile too, letting you study anywhere without carrying books.
What is the difference between study notes and cheat sheets?
Study notes explain concepts in depth with context, examples and analogies, making them ideal for learning and revision. Cheat sheets are compact quick-reference summaries of syntax, commands and key facts, ideal once you already understand a topic. Most learners study the notes first, then keep the cheat sheet handy while coding.
Do study notes help if I am stuck on a course lesson?
Yes, reading the matching study notes often clarifies a lesson because the same concept is explained from a different angle, frequently with a different analogy. If you are still stuck, ask the AI Mentor, which answers 24/7 at Quick, Detailed or Deep-dive depth until the idea genuinely makes sense.
Is there free study material for DevOps and cloud topics?
Yes, SkillVeris carries free study notes for DevOps and cloud topics as part of its coverage across 37 live courses. The material suits learners following the DevOps Engineer or Cloud Engineer paths, and it links to related glossary terms and cheat sheets so you can revise the whole toolchain in one place.
Can school or college students in India use these notes for projects?
Yes, students across India and worldwide use SkillVeris notes for coursework, projects and exam preparation, and everything is free, which matters for student budgets. The notes explain concepts clearly enough to cite in project reports, and Code Lab lets you prototype the project code directly in your browser.
How should I combine study notes with other SkillVeris resources?
A proven loop: learn from a course lesson, revise with the matching study notes, look up unfamiliar terms in the glossary, keep the cheat sheet open while practising in Code Lab, and quiz yourself with interview questions. The AI Mentor fills any remaining gaps 24/7, at whatever depth you need.

What Learners Say

Real journeys from the SkillVeris community — swipe for more.

SkillVeris taught me Python through Cricket. Now I’m building real projects and feeling confident!
Arjun S. · B.Tech Student
The best platform for hobby-based learning. Concepts finally stick.
Priya R. · Data Analyst
I went from zero coding to a portfolio of projects — all by learning through my love for gaming. Landed my first internship!
Kabir M. · CS Undergraduate
Trending Topics50 popular tags — tap to explore
Trending CoursesAll 37 free courses — tap to browse