Apdexスコア - CI/CD用語集の定義
Apdex (Application Performance Index) は0から1までの標準化されたスコアで、リクエストを目標閾値Tに対して満足、許容、不満のいずれかに分類することで、応答時間に対するユーザーの満足度を要約します。
計算式
Apdex = (満足の件数 + 許容の件数 / 2) / 全サンプル数。ここで満足とは応答時間がT以下であることを、許容とはTと4Tの間であることを意味します。
関連ガイド
Response Time - CI/CD Glossary DefinitionResponse Time: Response time is the total elapsed time from sending a request to receiving the complete respo…
Latency Percentile - CI/CD Glossary DefinitionLatency Percentile: A latency percentile reports the value below which a given fraction of requests fall: a p…
Error Rate - CI/CD Glossary DefinitionError Rate: Error rate is the fraction of requests that fail, usually expressed as a percentage of total requ…