forked from linkerd/linkerd2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstat_summary.go
777 lines (655 loc) · 22.5 KB
/
stat_summary.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
package api
import (
"context"
"fmt"
"reflect"
"sort"
"strings"
"github.com/linkerd/linkerd2/pkg/k8s"
pb "github.com/linkerd/linkerd2/viz/metrics-api/gen/viz"
vizutil "github.com/linkerd/linkerd2/viz/pkg/util"
"github.com/prometheus/common/model"
log "github.com/sirupsen/logrus"
"google.golang.org/protobuf/proto"
corev1 "k8s.io/api/core/v1"
kerrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
)
type resourceResult struct {
res *pb.StatTable
err error
}
type k8sStat struct {
object metav1.Object
podStats *podStats
}
type rKey struct {
Namespace string
Type string
Name string
}
type dstKey struct {
Namespace string
Service string
Dst string
Weight string
}
const (
success = "success"
failure = "failure"
reqQuery = "sum(increase(response_total%s[%s])) by (%s, classification, tls)"
latencyQuantileQuery = "histogram_quantile(%s, sum(irate(response_latency_ms_bucket%s[%s])) by (le, %s))"
tcpConnectionsQuery = "sum(tcp_open_connections%s) by (%s)"
tcpReadBytesQuery = "sum(increase(tcp_read_bytes_total%s[%s])) by (%s)"
tcpWriteBytesQuery = "sum(increase(tcp_write_bytes_total%s[%s])) by (%s)"
regexAny = ".+"
)
type podStats struct {
status string
inMesh uint64
total uint64
failed uint64
errors map[string]*pb.PodErrors
}
func (s *grpcServer) StatSummary(ctx context.Context, req *pb.StatSummaryRequest) (*pb.StatSummaryResponse, error) {
// check for well-formed request
if req.GetSelector().GetResource() == nil {
return statSummaryError(req, "StatSummary request missing Selector Resource"), nil
}
// err if --from is a service
if req.GetFromResource() != nil && req.GetFromResource().GetType() == k8s.Service {
return statSummaryError(req, "service is not supported as a target on 'from' queries, or as a target with 'to' queries"), nil
}
// err if --from is added with policy resources
if req.GetFromResource() != nil {
if isPolicyResource(req.GetSelector().GetResource()) ||
isPolicyResource(req.GetFromResource()) {
return statSummaryError(req, "'from' queries are not supported with policy resources, as they have inbound metrics only"), nil
}
}
if req.GetToResource() != nil {
if isPolicyResource(req.GetSelector().GetResource()) ||
isPolicyResource(req.GetToResource()) {
return statSummaryError(req, "'to' queries are not supported with policy resources, as they have inbound metrics only"), nil
}
}
switch ob := req.Outbound.(type) {
case *pb.StatSummaryRequest_ToResource:
if ob.ToResource.Type == k8s.All {
return statSummaryError(req, "resource type 'all' is not supported as a filter"), nil
}
case *pb.StatSummaryRequest_FromResource:
if ob.FromResource.Type == k8s.All {
return statSummaryError(req, "resource type 'all' is not supported as a filter"), nil
}
}
err := s.validateTimeWindow(ctx, req.TimeWindow)
if err != nil {
return statSummaryError(req, fmt.Sprintf("invalid time window: %s", err)), nil
}
statTables := make([]*pb.StatTable, 0)
var resourcesToQuery []string
if req.Selector.Resource.Type == k8s.All {
resourcesToQuery = k8s.StatAllResourceTypes
} else {
resourcesToQuery = []string{req.Selector.Resource.Type}
}
// request stats for the resourcesToQuery, in parallel
resultChan := make(chan resourceResult)
for _, resource := range resourcesToQuery {
statReq := proto.Clone(req).(*pb.StatSummaryRequest)
statReq.Selector.Resource.Type = resource
go func() {
if isNonK8sResourceQuery(statReq.GetSelector().GetResource().GetType()) {
resultChan <- s.nonK8sResourceQuery(ctx, statReq)
} else if statReq.GetSelector().GetResource().GetType() == k8s.Service {
resultChan <- s.serviceResourceQuery(ctx, statReq)
} else if isPolicyResource(statReq.GetSelector().GetResource()) {
resultChan <- s.policyResourceQuery(ctx, statReq)
} else {
resultChan <- s.k8sResourceQuery(ctx, statReq)
}
}()
}
for i := 0; i < len(resourcesToQuery); i++ {
result := <-resultChan
if result.err != nil {
return nil, vizutil.GRPCError(result.err)
}
statTables = append(statTables, result.res)
}
rsp := pb.StatSummaryResponse{
Response: &pb.StatSummaryResponse_Ok_{ // https://github.com/golang/protobuf/issues/205
Ok: &pb.StatSummaryResponse_Ok{
StatTables: statTables,
},
},
}
log.Debugf("Sent response as %+v\n", statTables)
return &rsp, nil
}
func statSummaryError(req *pb.StatSummaryRequest, message string) *pb.StatSummaryResponse {
return &pb.StatSummaryResponse{
Response: &pb.StatSummaryResponse_Error{
Error: &pb.ResourceError{
Resource: req.GetSelector().GetResource(),
Error: message,
},
},
}
}
func (s *grpcServer) getKubernetesObjectStats(req *pb.StatSummaryRequest) (map[rKey]k8sStat, error) {
requestedResource := req.GetSelector().GetResource()
labelSelector, err := getLabelSelector(req)
if err != nil {
return nil, err
}
objects, err := s.k8sAPI.GetObjects(requestedResource.Namespace, requestedResource.Type, requestedResource.Name, labelSelector)
if err != nil {
return nil, err
}
objectMap := map[rKey]k8sStat{}
for _, object := range objects {
metaObj, err := meta.Accessor(object)
if err != nil {
return nil, err
}
key := rKey{
Name: metaObj.GetName(),
Namespace: metaObj.GetNamespace(),
Type: requestedResource.GetType(),
}
podStats, err := s.getPodStats(object)
if err != nil {
return nil, err
}
objectMap[key] = k8sStat{
object: metaObj,
podStats: podStats,
}
}
return objectMap, nil
}
func (s *grpcServer) k8sResourceQuery(ctx context.Context, req *pb.StatSummaryRequest) resourceResult {
k8sObjects, err := s.getKubernetesObjectStats(req)
if err != nil {
return resourceResult{res: nil, err: err}
}
var requestMetrics map[rKey]*pb.BasicStats
var tcpMetrics map[rKey]*pb.TcpStats
if !req.SkipStats {
requestMetrics, tcpMetrics, err = s.getStatMetrics(ctx, req, req.TimeWindow)
if err != nil {
return resourceResult{res: nil, err: err}
}
}
rows := make([]*pb.StatTable_PodGroup_Row, 0)
keys := getResultKeys(req, k8sObjects, requestMetrics)
for _, key := range keys {
objInfo, ok := k8sObjects[key]
if !ok {
continue
}
var tcpStats *pb.TcpStats
if req.TcpStats {
tcpStats = tcpMetrics[key]
}
var basicStats *pb.BasicStats
if !reflect.DeepEqual(requestMetrics[key], &pb.BasicStats{}) {
basicStats = requestMetrics[key]
}
k8sResource := objInfo.object
row := pb.StatTable_PodGroup_Row{
Resource: &pb.Resource{
Name: k8sResource.GetName(),
Namespace: k8sResource.GetNamespace(),
Type: req.GetSelector().GetResource().GetType(),
},
TimeWindow: req.TimeWindow,
Stats: basicStats,
TcpStats: tcpStats,
}
podStat := objInfo.podStats
row.Status = podStat.status
row.MeshedPodCount = podStat.inMesh
row.RunningPodCount = podStat.total
row.FailedPodCount = podStat.failed
row.ErrorsByPod = podStat.errors
rows = append(rows, &row)
}
rsp := pb.StatTable{
Table: &pb.StatTable_PodGroup_{
PodGroup: &pb.StatTable_PodGroup{
Rows: rows,
},
},
}
return resourceResult{res: &rsp, err: nil}
}
func (s *grpcServer) serviceResourceQuery(ctx context.Context, req *pb.StatSummaryRequest) resourceResult {
rows := make([]*pb.StatTable_PodGroup_Row, 0)
dstBasicStats := make(map[dstKey]*pb.BasicStats)
dstTCPStats := make(map[dstKey]*pb.TcpStats)
if !req.SkipStats {
var err error
dstBasicStats, dstTCPStats, err = s.getServiceMetrics(ctx, req, req.TimeWindow)
if err != nil {
return resourceResult{res: nil, err: err}
}
}
weights := make(map[dstKey]string)
for k := range dstBasicStats {
weights[k] = ""
}
name := req.GetSelector().GetResource().GetName()
namespace := req.GetSelector().GetResource().GetNamespace()
// Check if a ServiceProfile exists for the Service
spName := fmt.Sprintf("%s.%s.svc.%s", name, namespace, s.clusterDomain)
sp, err := s.k8sAPI.SP().Lister().ServiceProfiles(namespace).Get(spName)
if err == nil {
for _, weightedDst := range sp.Spec.DstOverrides {
weights[dstKey{
Namespace: namespace,
Service: name,
Dst: dstFromAuthority(weightedDst.Authority),
}] = weightedDst.Weight.String()
}
} else if !kerrors.IsNotFound(err) {
log.Errorf("Failed to get weights from ServiceProfile %q: %v", spName, err)
}
for k, weight := range weights {
row := pb.StatTable_PodGroup_Row{
Resource: &pb.Resource{
Name: k.Service,
Namespace: k.Namespace,
Type: req.GetSelector().GetResource().GetType(),
},
TimeWindow: req.TimeWindow,
Stats: dstBasicStats[k],
TcpStats: dstTCPStats[k],
}
// Set TrafficSplitStats only when weight is not empty
if weight != "" {
row.TsStats = &pb.TrafficSplitStats{
Apex: k.Service,
Leaf: k.Dst,
Weight: weight,
}
}
rows = append(rows, &row)
}
// sort rows before returning in order to have a consistent order for tests
rows = sortTrafficSplitRows(rows)
rsp := pb.StatTable{
Table: &pb.StatTable_PodGroup_{
PodGroup: &pb.StatTable_PodGroup{
Rows: rows,
},
},
}
return resourceResult{res: &rsp, err: nil}
}
func sortTrafficSplitRows(rows []*pb.StatTable_PodGroup_Row) []*pb.StatTable_PodGroup_Row {
sort.Slice(rows, func(i, j int) bool {
if rows[i].TsStats != nil && rows[j].TsStats != nil {
key1 := rows[i].TsStats.Apex + rows[i].TsStats.Leaf
key2 := rows[j].TsStats.Apex + rows[j].TsStats.Leaf
return key1 < key2
}
return false
})
return rows
}
func (s *grpcServer) nonK8sResourceQuery(ctx context.Context, req *pb.StatSummaryRequest) resourceResult {
var requestMetrics map[rKey]*pb.BasicStats
if !req.SkipStats {
var err error
requestMetrics, _, err = s.getStatMetrics(ctx, req, req.TimeWindow)
if err != nil {
return resourceResult{res: nil, err: err}
}
}
rows := make([]*pb.StatTable_PodGroup_Row, 0)
for rkey, metrics := range requestMetrics {
rkey.Type = req.GetSelector().GetResource().GetType()
row := pb.StatTable_PodGroup_Row{
Resource: &pb.Resource{
Type: rkey.Type,
Namespace: rkey.Namespace,
Name: rkey.Name,
},
TimeWindow: req.TimeWindow,
Stats: metrics,
}
rows = append(rows, &row)
}
rsp := pb.StatTable{
Table: &pb.StatTable_PodGroup_{
PodGroup: &pb.StatTable_PodGroup{
Rows: rows,
},
},
}
return resourceResult{res: &rsp, err: nil}
}
func isNonK8sResourceQuery(resourceType string) bool {
return resourceType == k8s.Authority
}
// get the list of objects for which we want to return results
func getResultKeys(
req *pb.StatSummaryRequest,
k8sObjects map[rKey]k8sStat,
metricResults map[rKey]*pb.BasicStats,
) []rKey {
var keys []rKey
if req.GetOutbound() == nil || req.GetNone() != nil {
// if the request doesn't have outbound filtering, return all rows
for key := range k8sObjects {
keys = append(keys, key)
}
} else {
// if the request does have outbound filtering,
// only return rows for which we have stats
for key := range metricResults {
keys = append(keys, key)
}
}
return keys
}
func buildRequestLabels(req *pb.StatSummaryRequest) (labels model.LabelSet, labelNames model.LabelNames) {
// labelNames: the group by in the prometheus query
// labels: the labels for the resource we want to query for
switch out := req.Outbound.(type) {
case *pb.StatSummaryRequest_ToResource:
labelNames = promGroupByLabelNames(req.Selector.Resource)
labels = labels.Merge(promDstQueryLabels(out.ToResource))
labels = labels.Merge(promQueryLabels(req.Selector.Resource))
labels = labels.Merge(promDirectionLabels("outbound"))
case *pb.StatSummaryRequest_FromResource:
labelNames = promDstGroupByLabelNames(req.Selector.Resource)
labels = labels.Merge(promQueryLabels(out.FromResource))
labels = labels.Merge(promDstQueryLabels(req.Selector.Resource))
labels = labels.Merge(promDirectionLabels("outbound"))
default:
labelNames = promGroupByLabelNames(req.Selector.Resource)
labels = labels.Merge(promQueryLabels(req.Selector.Resource))
labels = labels.Merge(promDirectionLabels("inbound"))
}
return
}
func buildServiceRequestLabels(req *pb.StatSummaryRequest) (labels model.LabelSet, labelNames model.LabelNames) {
// Service Request labels are always direction="outbound". If the --from or --to flags were used,
// we merge an additional ToResource or FromResource label. Service metrics results are
// always grouped by dst_service, and dst_namespace (to avoid conflicts) .
labels = model.LabelSet{
"direction": model.LabelValue("outbound"),
}
switch out := req.Outbound.(type) {
case *pb.StatSummaryRequest_ToResource:
// if --to flag is passed, Calculate traffic sent to the service
// with additional filtering narrowing down to the workload
// it is sent to.
labels = labels.Merge(promDstQueryLabels(out.ToResource))
case *pb.StatSummaryRequest_FromResource:
// if --from flag is passed, FromResource is never a service here
labels = labels.Merge(promQueryLabels(out.FromResource))
default:
// no extra labels needed
}
groupBy := model.LabelNames{model.LabelName("dst_namespace"), model.LabelName("dst_service")}
return labels, groupBy
}
func buildTCPStatsRequestLabels(req *pb.StatSummaryRequest, reqLabels model.LabelSet) string {
switch req.Outbound.(type) {
case *pb.StatSummaryRequest_ToResource, *pb.StatSummaryRequest_FromResource:
// If TCP stats are queried from a resource to another one (i.e outbound -- from/to), then append peer='dst'
reqLabels = reqLabels.Merge(promPeerLabel("dst"))
default:
// If TCP stats are not queried from a specific resource (i.e inbound -- no to/from), then append peer='src'
reqLabels = reqLabels.Merge(promPeerLabel("src"))
}
return reqLabels.String()
}
func (s *grpcServer) getStatMetrics(ctx context.Context, req *pb.StatSummaryRequest, timeWindow string) (map[rKey]*pb.BasicStats, map[rKey]*pb.TcpStats, error) {
reqLabels, groupBy := buildRequestLabels(req)
promQueries := map[promType]string{
promRequests: fmt.Sprintf(reqQuery, reqLabels.String(), timeWindow, groupBy.String()),
}
if req.TcpStats {
promQueries[promTCPConnections] = fmt.Sprintf(tcpConnectionsQuery, reqLabels.String(), groupBy.String())
// For TCP read/write bytes total we add an additional 'peer' label with a value of either 'src' or 'dst'
tcpLabels := buildTCPStatsRequestLabels(req, reqLabels)
promQueries[promTCPReadBytes] = fmt.Sprintf(tcpReadBytesQuery, tcpLabels, timeWindow, groupBy.String())
promQueries[promTCPWriteBytes] = fmt.Sprintf(tcpWriteBytesQuery, tcpLabels, timeWindow, groupBy.String())
}
quantileQueries := generateQuantileQueries(latencyQuantileQuery, reqLabels.String(), timeWindow, groupBy.String())
results, err := s.getPrometheusMetrics(ctx, promQueries, quantileQueries)
if err != nil {
return nil, nil, err
}
basicStats, tcpStats, _ := processPrometheusMetrics(req, results, groupBy)
return basicStats, tcpStats, nil
}
func (s *grpcServer) getServiceMetrics(ctx context.Context, req *pb.StatSummaryRequest, timeWindow string) (map[dstKey]*pb.BasicStats, map[dstKey]*pb.TcpStats, error) {
dstBasicStats := make(map[dstKey]*pb.BasicStats)
dstTCPStats := make(map[dstKey]*pb.TcpStats)
labels, groupBy := buildServiceRequestLabels(req)
service := req.GetSelector().GetResource().GetName()
namespace := req.GetSelector().GetResource().GetNamespace()
if service == "" {
service = regexAny
}
authority := fmt.Sprintf("%s.%s.svc.%s", service, namespace, s.clusterDomain)
reqLabels := generateLabelStringWithRegex(labels, string(authorityLabel), authority)
promQueries := map[promType]string{
promRequests: fmt.Sprintf(reqQuery, reqLabels, timeWindow, groupBy.String()),
}
if req.TcpStats {
// Service stats always need to have `peer=dst`, cuz there is no `src` with `authority` label
tcpLabels := labels.Merge(promPeerLabel("dst"))
tcpLabelString := generateLabelStringWithRegex(tcpLabels, string(authorityLabel), authority)
promQueries[promTCPConnections] = fmt.Sprintf(tcpConnectionsQuery, tcpLabelString, groupBy.String())
promQueries[promTCPReadBytes] = fmt.Sprintf(tcpReadBytesQuery, tcpLabelString, timeWindow, groupBy.String())
promQueries[promTCPWriteBytes] = fmt.Sprintf(tcpWriteBytesQuery, tcpLabelString, timeWindow, groupBy.String())
}
quantileQueries := generateQuantileQueries(latencyQuantileQuery, reqLabels, timeWindow, groupBy.String())
results, err := s.getPrometheusMetrics(ctx, promQueries, quantileQueries)
if err != nil {
return nil, nil, err
}
basicStats, tcpStats, _ := processPrometheusMetrics(req, results, groupBy)
for rKey, basicStatsVal := range basicStats {
// Use the returned `dst_service` in the `all` svc case
svcName := service
if svcName == regexAny {
svcName = rKey.Name
}
dstBasicStats[dstKey{
Namespace: rKey.Namespace,
Service: svcName,
Dst: rKey.Name,
}] = basicStatsVal
}
for rKey, tcpStatsVal := range tcpStats {
// Use the returned `dst_service` in the `all` svc case
svcName := service
if svcName == regexAny {
svcName = rKey.Name
}
dstTCPStats[dstKey{
Namespace: rKey.Namespace,
Service: svcName,
Dst: rKey.Name,
}] = tcpStatsVal
}
return dstBasicStats, dstTCPStats, nil
}
func processPrometheusMetrics(req *pb.StatSummaryRequest, results []promResult, groupBy model.LabelNames) (map[rKey]*pb.BasicStats, map[rKey]*pb.TcpStats, map[rKey]*pb.ServerStats) {
basicStats := make(map[rKey]*pb.BasicStats)
tcpStats := make(map[rKey]*pb.TcpStats)
authzStats := make(map[rKey]*pb.ServerStats)
for _, result := range results {
for _, sample := range result.vec {
resource := metricToKey(req, sample.Metric, groupBy)
addBasicStats := func() {
if basicStats[resource] == nil {
basicStats[resource] = &pb.BasicStats{}
}
}
addTCPStats := func() {
if tcpStats[resource] == nil {
tcpStats[resource] = &pb.TcpStats{}
}
}
if authzStats[resource] == nil {
srv := pb.Resource{
Type: string(sample.Metric[serverKindLabel]),
Name: string(sample.Metric[serverNameLabel]),
}
route := pb.Resource{
Type: string(sample.Metric[routeKindLabel]),
Name: string(sample.Metric[routeNameLabel]),
}
authz := pb.Resource{
Type: string(sample.Metric[authorizationKindLabel]),
Name: string(sample.Metric[authorizationNameLabel]),
}
authzStats[resource] = &pb.ServerStats{
Srv: &srv,
Route: &route,
Authz: &authz,
}
}
value := extractSampleValue(sample)
switch result.prom {
case promRequests:
addBasicStats()
switch string(sample.Metric[model.LabelName("classification")]) {
case success:
basicStats[resource].SuccessCount += value
case failure:
basicStats[resource].FailureCount += value
}
case promLatencyP50:
addBasicStats()
basicStats[resource].LatencyMsP50 = value
case promLatencyP95:
addBasicStats()
basicStats[resource].LatencyMsP95 = value
case promLatencyP99:
addBasicStats()
basicStats[resource].LatencyMsP99 = value
case promTCPConnections:
addTCPStats()
tcpStats[resource].OpenConnections = value
case promTCPReadBytes:
addTCPStats()
tcpStats[resource].ReadBytesTotal = value
case promTCPWriteBytes:
addTCPStats()
tcpStats[resource].WriteBytesTotal = value
case promAllowedRequests:
authzStats[resource].AllowedCount = value
case promDeniedRequests:
authzStats[resource].DeniedCount = value
}
}
}
return basicStats, tcpStats, authzStats
}
func metricToKey(req *pb.StatSummaryRequest, metric model.Metric, groupBy model.LabelNames) rKey {
// this key is used to match the metric stats we queried from prometheus
// with the k8s object stats we queried from k8s
// ASSUMPTION: this code assumes that groupBy is always ordered (..., namespace, name)
key := rKey{
Type: req.GetSelector().GetResource().GetType(),
Name: string(metric[groupBy[len(groupBy)-1]]),
}
if len(groupBy) >= 2 {
key.Namespace = string(metric[groupBy[len(groupBy)-2]])
}
return key
}
func (s *grpcServer) getPodStats(obj runtime.Object) (*podStats, error) {
pods, err := s.k8sAPI.GetPodsFor(obj, true)
if err != nil {
return nil, err
}
podErrors := make(map[string]*pb.PodErrors)
meshCount := &podStats{}
if pod, ok := obj.(*corev1.Pod); ok {
meshCount.status = k8s.GetPodStatus(*pod)
}
for _, pod := range pods {
if pod.Status.Phase == corev1.PodFailed {
meshCount.failed++
} else {
meshCount.total++
if k8s.IsMeshed(pod, s.controllerNamespace) {
meshCount.inMesh++
}
}
errors := checkContainerErrors(pod.Status.ContainerStatuses)
errors = append(errors, checkContainerErrors(pod.Status.InitContainerStatuses)...)
if len(errors) > 0 {
podErrors[pod.Name] = &pb.PodErrors{Errors: errors}
}
}
meshCount.errors = podErrors
return meshCount, nil
}
func toPodError(container, image, reason, message string) *pb.PodErrors_PodError {
return &pb.PodErrors_PodError{
Error: &pb.PodErrors_PodError_Container{
Container: &pb.PodErrors_PodError_ContainerError{
Message: message,
Container: container,
Image: image,
Reason: reason,
},
},
}
}
func checkContainerErrors(containerStatuses []corev1.ContainerStatus) []*pb.PodErrors_PodError {
errors := []*pb.PodErrors_PodError{}
for _, st := range containerStatuses {
if !st.Ready {
if st.State.Waiting != nil {
errors = append(errors, toPodError(st.Name, st.Image, st.State.Waiting.Reason, st.State.Waiting.Message))
}
if st.State.Terminated != nil && (st.State.Terminated.ExitCode != 0 || st.State.Terminated.Signal != 0) {
errors = append(errors, toPodError(st.Name, st.Image, st.State.Terminated.Reason, st.State.Terminated.Message))
}
if st.LastTerminationState.Waiting != nil {
errors = append(errors, toPodError(st.Name, st.Image, st.LastTerminationState.Waiting.Reason, st.LastTerminationState.Waiting.Message))
}
if st.LastTerminationState.Terminated != nil {
errors = append(errors, toPodError(st.Name, st.Image, st.LastTerminationState.Terminated.Reason, st.LastTerminationState.Terminated.Message))
}
}
}
return errors
}
func getLabelSelector(req *pb.StatSummaryRequest) (labels.Selector, error) {
labelSelector := labels.Everything()
if s := req.GetSelector().GetLabelSelector(); s != "" {
var err error
labelSelector, err = labels.Parse(s)
if err != nil {
return nil, fmt.Errorf("invalid label selector %q: %w", s, err)
}
}
return labelSelector, nil
}
func dstFromAuthority(authority string) string {
// name.namespace.svc.suffix
labels := strings.Split(authority, ".")
if len(labels) >= 3 && labels[2] == "svc" {
// name
return labels[0]
}
return authority
}