forked from elastic/apm-agent-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
191 lines (171 loc) · 5.17 KB
/
example_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
188
189
190
191
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you 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 apm_test
import (
"compress/zlib"
"context"
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"net/http/httptest"
"os"
"sync"
"time"
"go.elastic.co/apm/v2"
)
// ExampleTracer shows how to use the Tracer API
func ExampleTracer() {
var r recorder
server := httptest.NewServer(&r)
defer server.Close()
os.Setenv("ELASTIC_APM_SERVER_URL", server.URL)
defer os.Unsetenv("ELASTIC_APM_SERVER_URL")
const serviceName = "service-name"
const serviceVersion = "1.0.0"
tracer, err := apm.NewTracer(serviceName, serviceVersion)
if err != nil {
log.Fatal(err)
}
defer tracer.Close()
// api is a very basic API handler, to demonstrate the usage
// of the tracer. api.handlerOrder creates a transaction for
// every call; api.handleOrder calls through to storeOrder,
// which adds a span to the transaction.
api := &api{tracer: tracer}
api.handleOrder(context.Background(), "fish fingers")
api.handleOrder(context.Background(), "detergent")
// The tracer will stream events to the APM server, and will
// close the request when it reaches a given size in bytes
// (ELASTIC_APM_API_REQUEST_SIZE) or a given duration has
// elapsed (ELASTIC_APM_API_REQUEST_TIME). Even so, we flush
// here to ensure the data reaches the server.
tracer.Flush(nil)
fmt.Println("number of payloads:", len(r.payloads))
metadata := r.payloads[0]["metadata"].(map[string]interface{})
service := metadata["service"].(map[string]interface{})
agent := service["agent"].(map[string]interface{})
language := service["language"].(map[string]interface{})
runtime := service["runtime"].(map[string]interface{})
fmt.Println(" service name:", service["name"])
fmt.Println(" service version:", service["version"])
fmt.Println(" agent name:", agent["name"])
fmt.Println(" language name:", language["name"])
fmt.Println(" runtime name:", runtime["name"])
var transactions []map[string]interface{}
var spans []map[string]interface{}
for _, p := range r.payloads[1:] {
t, ok := p["transaction"].(map[string]interface{})
if ok {
transactions = append(transactions, t)
continue
}
s, ok := p["span"].(map[string]interface{})
if ok {
spans = append(spans, s)
continue
}
}
if len(transactions) != len(spans) {
fmt.Printf("%d transaction(s), %d span(s)\n", len(transactions), len(spans))
return
}
for i, t := range transactions {
s := spans[i]
fmt.Printf(" transaction %d:\n", i)
fmt.Println(" name:", t["name"])
fmt.Println(" type:", t["type"])
fmt.Println(" context:", t["context"])
fmt.Printf(" span %d:\n", i)
fmt.Println(" name:", s["name"])
fmt.Println(" type:", s["type"])
}
// Output:
// number of payloads: 5
// service name: service-name
// service version: 1.0.0
// agent name: go
// language name: go
// runtime name: gc
// transaction 0:
// name: order
// type: request
// context: map[tags:map[product:fish fingers]]
// span 0:
// name: store_order
// type: rpc
// transaction 1:
// name: order
// type: request
// context: map[tags:map[product:detergent]]
// span 1:
// name: store_order
// type: rpc
}
type api struct {
tracer *apm.Tracer
}
func (api *api) handleOrder(ctx context.Context, product string) {
tx := api.tracer.StartTransaction("order", "request")
defer tx.End()
ctx = apm.ContextWithTransaction(ctx, tx)
tx.Context.SetLabel("product", product)
time.Sleep(10 * time.Millisecond)
storeOrder(ctx, product)
time.Sleep(20 * time.Millisecond)
}
func storeOrder(ctx context.Context, product string) {
span, _ := apm.StartSpan(ctx, "store_order", "rpc")
defer span.End()
time.Sleep(50 * time.Millisecond)
}
type recorder struct {
mu sync.Mutex
payloads []map[string]interface{}
}
func (r *recorder) count() int {
r.mu.Lock()
defer r.mu.Unlock()
return len(r.payloads)
}
func (r *recorder) ServeHTTP(w http.ResponseWriter, req *http.Request) {
if req.URL.Path != "/intake/v2/events" {
// Ignore config requests.
return
}
body, err := zlib.NewReader(req.Body)
if err != nil {
panic(err)
}
decoder := json.NewDecoder(body)
var payloads []map[string]interface{}
for {
var m map[string]interface{}
if err := decoder.Decode(&m); err != nil {
if err == io.EOF {
break
}
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
payloads = append(payloads, m)
}
r.mu.Lock()
r.payloads = append(r.payloads, payloads...)
r.mu.Unlock()
}