Skip to content

Instantly share code, notes, and snippets.

@yaodong
Last active August 29, 2015 14:19
Show Gist options
  • Save yaodong/98299a30dd8a4b1caa98 to your computer and use it in GitHub Desktop.
Save yaodong/98299a30dd8a4b1caa98 to your computer and use it in GitHub Desktop.

From WikiPedia:

Apdex (Application Performance Index) is an open standard developed by an alliance of companies. It defines a standard method for reporting and comparing the performance of software applications in computing. Its purpose is to convert measurements into insights about user satisfaction, by specifying a uniform way to analyze and report on the degree to which measured performance meets user expectations.

The Apdex formula is the number of satisfied samples plus half of the tolerating samples plus none of the frustrated samples, divided by all the samples:

Apdext = (Satisfied Count + Tolerating Count / 2) / Total Samples

The tolerable time is assumed to be 4 times the target time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment