File: apdex.go

package info (click to toggle)
golang-github-newrelic-go-agent 3.15.2-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 8,356 kB
  • sloc: sh: 65; makefile: 6
file content (51 lines) | stat: -rw-r--r-- 1,174 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

package newrelic

import "time"

// apdexZone is a transaction classification.
type apdexZone int

// https://en.wikipedia.org/wiki/Apdex
const (
	apdexNone apdexZone = iota
	apdexSatisfying
	apdexTolerating
	apdexFailing
)

// apdexFailingThreshold calculates the threshold at which the transaction is
// considered a failure.
func apdexFailingThreshold(threshold time.Duration) time.Duration {
	return 4 * threshold
}

// calculateApdexZone calculates the apdex based on the transaction duration and
// threshold.
//
// Note that this does not take into account whether or not the transaction
// had an error.  That is expected to be done by the caller.
func calculateApdexZone(threshold, duration time.Duration) apdexZone {
	if duration <= threshold {
		return apdexSatisfying
	}
	if duration <= apdexFailingThreshold(threshold) {
		return apdexTolerating
	}
	return apdexFailing
}

func (zone apdexZone) label() string {
	switch zone {
	case apdexSatisfying:
		return "S"
	case apdexTolerating:
		return "T"
	case apdexFailing:
		return "F"
	default:
		return ""
	}
}