forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetrics.go
224 lines (191 loc) · 6.41 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package controller
import (
"fmt"
"sync"
apierrs "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
imageapi "github.com/openshift/origin/pkg/image/apis/image"
metrics "github.com/openshift/origin/pkg/image/metrics/prometheus"
)
const reasonUnknown = "Unknown"
const reasonInvalidImageReference = "InvalidImageReference"
// ImportMetricCounter counts numbers of successful and failed imports for the purpose of metrics collection.
type ImportMetricCounter struct {
counterMutex sync.Mutex
importSuccessCounts metrics.ImportSuccessCounts
importErrorCounts metrics.ImportErrorCounts
}
// NewImportMetricCounter returns a new ImportMetricCounter
func NewImportMetricCounter() *ImportMetricCounter {
return &ImportMetricCounter{
importSuccessCounts: make(metrics.ImportSuccessCounts),
importErrorCounts: make(metrics.ImportErrorCounts),
}
}
// Increment processes the given image stream import object as a result of successful or failed import and
// increments the counters. The given error will be used to construct reason of the error_count metric unless
// any reason is found in the image stream import object. It's safe to call this method with any of the
// parameters nil.
func (c *ImportMetricCounter) Increment(isi *imageapi.ImageStreamImport, err error) {
if isi == nil {
if err == nil {
return
}
c.counterMutex.Lock()
defer c.counterMutex.Unlock()
info := defaultErrorInfoReason(&metrics.ImportErrorInfo{}, err)
c.importErrorCounts[*info]++
return
}
c.countRepositoryImport(isi, err)
if len(isi.Status.Images) == 0 {
return
}
c.counterMutex.Lock()
defer c.counterMutex.Unlock()
enumerateIsImportStatuses(isi, func(info *metrics.ImportErrorInfo) {
if len(info.Reason) == 0 {
c.importSuccessCounts[info.Registry]++
} else {
c.importErrorCounts[*defaultErrorInfoReason(info, err)]++
}
})
}
// countRepositoryImport increments either success or error counter if the isimport contains repository
// request.
func (c *ImportMetricCounter) countRepositoryImport(isi *imageapi.ImageStreamImport, err error) {
errInfo := getIsImportRepositoryInfo(isi)
if errInfo == nil {
return
}
c.counterMutex.Lock()
defer c.counterMutex.Unlock()
if len(errInfo.Reason) == 0 {
c.importSuccessCounts[errInfo.Registry]++
} else {
c.importErrorCounts[*defaultErrorInfoReason(errInfo, err)]++
}
}
// Collect is supposed to be called by the metrics collector. It returns the actual state of counters.
func (c *ImportMetricCounter) Collect() (metrics.ImportSuccessCounts, metrics.ImportErrorCounts, error) {
c.counterMutex.Lock()
defer c.counterMutex.Unlock()
success := metrics.ImportSuccessCounts{}
for registry, count := range c.importSuccessCounts {
success[registry] = count
}
failures := metrics.ImportErrorCounts{}
for info, count := range c.importErrorCounts {
failures[info] = count
}
return success, failures, nil
}
// getIsImportRepositoryInfo returns an import error info if the given isi contains repository request.
// If the request succeeded, its Reason will be empty.
func getIsImportRepositoryInfo(isi *imageapi.ImageStreamImport) *metrics.ImportErrorInfo {
if isi.Status.Repository == nil || isi.Spec.Repository == nil {
return nil
}
ref := isi.Spec.Repository.From
if ref.Kind != "DockerImage" {
return nil
}
imgRef, err := imageapi.ParseDockerImageReference(ref.Name)
if err != nil {
utilruntime.HandleError(fmt.Errorf(
"failed to parse isi.spec.repository.from.name %q: %v",
ref.Name, err))
return nil
}
info := mkImportInfo(imgRef.DockerClientDefaults().Registry, &isi.Status.Repository.Status)
return &info
}
// enumerateIsImportStatuses iterates over images of the given image stream import. For any valid recorded
// import the cb callback will be colled with the obtains information.
// If the image import is successful, the object passed to the cb will contain empty Reason.
func enumerateIsImportStatuses(isi *imageapi.ImageStreamImport, cb func(*metrics.ImportErrorInfo)) {
if len(isi.Status.Images) == 0 {
return
}
for i, status := range isi.Status.Images {
var registry string
imgRef, err := getImageDockerReferenceForImage(isi, i)
if err != nil {
utilruntime.HandleError(err)
} else {
if imgRef == nil {
continue
}
registry = imgRef.DockerClientDefaults().Registry
}
info := mkImportInfo(registry, &status.Status)
if err != nil {
info.Reason = reasonInvalidImageReference
}
cb(&info)
}
}
func getImageDockerReferenceForImage(
isi *imageapi.ImageStreamImport,
index int,
) (*imageapi.DockerImageReference, error) {
var (
imgRef imageapi.DockerImageReference
err error
)
// prefer the specification as the source of truth because the reference in status may belong to an
// older image imported from somewhere else
if index >= 0 && index < len(isi.Spec.Images) {
imgSpec := &isi.Spec.Images[index]
if imgSpec.From.Kind == "DockerImage" {
imgRef, err = imageapi.ParseDockerImageReference(imgSpec.From.Name)
if err == nil {
return &imgRef, nil
}
err = fmt.Errorf("failed to parse isi.spec.images[%d].from.name %q: %v",
index, imgSpec.From.Name, err)
}
}
// fall-back to the image in status
if index < 0 || index >= len(isi.Status.Images) {
return nil, err
}
img := isi.Status.Images[index].Image
if img == nil {
return nil, err
}
imgRef, err = imageapi.ParseDockerImageReference(img.DockerImageReference)
if err != nil {
return nil, fmt.Errorf(
"failed to parse isi.status.images[%d].image.dockerImageReference %q: %v",
index, img.DockerImageReference, err)
}
return &imgRef, nil
}
// mkImportInfo returns an import error info for the given status. If the import succeeded, the Reason field
// will be empty.
func mkImportInfo(registry string, status *metav1.Status) metrics.ImportErrorInfo {
var reason string
if status.Status != metav1.StatusSuccess {
reason = string(status.Reason)
if len(reason) == 0 {
reason = reasonUnknown
}
}
return metrics.ImportErrorInfo{
Registry: registry,
Reason: reason,
}
}
// defaultErrorInfoReason fills the Reason field of the import error info from the given error unless already
// set.
func defaultErrorInfoReason(info *metrics.ImportErrorInfo, err error) *metrics.ImportErrorInfo {
if len(info.Reason) == 0 && err != nil {
info.Reason = string(apierrs.ReasonForError(err))
if len(info.Reason) == 0 {
info.Reason = reasonUnknown
}
}
return info
}