forked from yvasiyarov/gorelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http_status_metrics.go
33 lines (26 loc) · 1014 Bytes
/
http_status_metrics.go
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
package gorelic
import (
"fmt"
"github.com/yvasiyarov/go-metrics"
"github.com/yvasiyarov/newrelic_platform_go"
)
// New metrica collector - counter per each http status code.
type counterByStatusMetrica struct {
counter metrics.Counter
name string
units string
}
// metrics.IMetrica interface implementation.
func (m *counterByStatusMetrica) GetName() string { return m.name }
func (m *counterByStatusMetrica) GetUnits() string { return m.units }
func (m *counterByStatusMetrica) GetValue() (float64, error) { return float64(m.counter.Count()), nil }
// addHTTPStatusMetricsToComponent initializes counter metrics for all http statuses and adds them to the component.
func addHTTPStatusMetricsToComponent(component newrelic_platform_go.IComponent, statusCounters map[int]metrics.Counter) {
for statusCode, counter := range statusCounters {
component.AddMetrica(&counterByStatusMetrica{
counter: counter,
name: fmt.Sprintf("http/status/%d", statusCode),
units: "count",
})
}
}