forked from census-ecosystem/opencensus-go-exporter-ocagent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewdata_to_metrics_test.go
187 lines (163 loc) · 4.66 KB
/
viewdata_to_metrics_test.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
// Copyright 2018, OpenCensus Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package ocagent
import (
"encoding/json"
"errors"
"net"
"reflect"
"sync"
"testing"
"time"
"github.com/golang/protobuf/ptypes/timestamp"
"google.golang.org/grpc"
"go.opencensus.io/stats"
"go.opencensus.io/stats/view"
agentmetricspb "github.com/census-instrumentation/opencensus-proto/gen-go/agent/metrics/v1"
metricspb "github.com/census-instrumentation/opencensus-proto/gen-go/metrics/v1"
)
type metricsAgent struct {
mu sync.RWMutex
metrics []*agentmetricspb.ExportMetricsServiceRequest
}
func TestExportMetrics_conversionFromViewData(t *testing.T) {
ln, err := net.Listen("tcp", ":0")
if err != nil {
t.Fatalf("Failed to get an available TCP address: %v", err)
}
defer ln.Close()
_, agentPortStr, _ := net.SplitHostPort(ln.Addr().String())
ma := new(metricsAgent)
srv := grpc.NewServer()
agentmetricspb.RegisterMetricsServiceServer(srv, ma)
defer srv.Stop()
go func() {
_ = srv.Serve(ln)
}()
reconnectionPeriod := 2 * time.Millisecond
ocexp, err := NewExporter(
WithInsecure(),
WithAddress(":"+agentPortStr),
WithReconnectionPeriod(reconnectionPeriod),
)
if err != nil {
t.Fatalf("Failed to create the ocagent exporter: %v", err)
}
<-time.After(5 * reconnectionPeriod)
ocexp.Flush()
startTime := time.Date(2018, 11, 25, 15, 38, 18, 997, time.UTC)
endTime := startTime.Add(100 * time.Millisecond)
mLatencyMs := stats.Float64("latency", "The latency for various methods", "ms")
ocexp.ExportView(&view.Data{
Start: startTime,
End: endTime,
View: &view.View{
Name: "ocagent.io/latency",
Description: "The latency of the various methods",
Aggregation: view.Count(),
Measure: mLatencyMs,
},
Rows: []*view.Row{
{
Data: &view.CountData{Value: 4},
},
},
})
for i := 0; i < 5; i++ {
ocexp.Flush()
}
<-time.After(100 * time.Millisecond)
var received []*agentmetricspb.ExportMetricsServiceRequest
ma.forEachRequest(func(req *agentmetricspb.ExportMetricsServiceRequest) {
received = append(received, req)
})
// Now compare them with what we expect
want := []*agentmetricspb.ExportMetricsServiceRequest{
{
Node: NodeWithStartTime(""), // The first message identifying this application.
Metrics: nil,
Resource: resourceProtoFromEnv(),
},
{
Metrics: []*metricspb.Metric{
{
Descriptor_: &metricspb.Metric_MetricDescriptor{
MetricDescriptor: &metricspb.MetricDescriptor{
Name: "ocagent.io/latency",
Description: "The latency of the various methods",
Unit: "ms", // Derived from the measure
Type: metricspb.MetricDescriptor_CUMULATIVE_INT64,
LabelKeys: nil,
},
},
Timeseries: []*metricspb.TimeSeries{
{
StartTimestamp: ×tamp.Timestamp{
Seconds: 1543160298,
Nanos: 997,
},
LabelValues: nil,
Points: []*metricspb.Point{
{
Timestamp: ×tamp.Timestamp{
Seconds: 1543160298,
Nanos: 100000997,
},
Value: &metricspb.Point_Int64Value{Int64Value: 4},
},
},
},
},
},
},
},
}
if !reflect.DeepEqual(received, want) {
gj, _ := json.MarshalIndent(received, "", " ")
wj, _ := json.MarshalIndent(want, "", " ")
if string(gj) != string(wj) {
t.Errorf("Got:\n%s\nWant:\n%s", gj, wj)
}
}
}
func (ma *metricsAgent) Export(mes agentmetricspb.MetricsService_ExportServer) error {
// Expecting the first message to contain the Node information
firstMetric, err := mes.Recv()
if err != nil {
return err
}
if firstMetric == nil || firstMetric.Node == nil {
return errors.New("Expecting a non-nil Node in the first message")
}
ma.addMetric(firstMetric)
for {
msg, err := mes.Recv()
if err != nil {
return err
}
ma.addMetric(msg)
}
}
func (ma *metricsAgent) addMetric(metric *agentmetricspb.ExportMetricsServiceRequest) {
ma.mu.Lock()
ma.metrics = append(ma.metrics, metric)
ma.mu.Unlock()
}
func (ma *metricsAgent) forEachRequest(fn func(*agentmetricspb.ExportMetricsServiceRequest)) {
ma.mu.RLock()
defer ma.mu.RUnlock()
for _, req := range ma.metrics {
fn(req)
}
}