-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
151 lines (122 loc) · 3.38 KB
/
main.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
package gcfexample
import (
"cloud.google.com/go/logging"
"context"
"contrib.go.opencensus.io/exporter/stackdriver"
"contrib.go.opencensus.io/exporter/stackdriver/propagation"
"fmt"
"go.opencensus.io/trace"
"google.golang.org/genproto/googleapis/api/monitoredres"
"math/rand"
"net/http"
"os"
"sync"
)
var (
logger *logging.Logger
once sync.Once
)
// configFunc sets the global configuration; it's overridden in tests.
var configFunc = defaultConfigFunc
type StructureLogExample struct {
ThingOne string `json:"thing_one"`
BatchSize int `json:"batch_size"`
}
func Gcfexample(w http.ResponseWriter, r *http.Request) {
once.Do(func() {
if err := configFunc(); err != nil {
panic(err)
}
})
defer logger.Flush()
// random number between 1 ad 6
batchAttempt := int64(rand.Int() % 6)
ctx := r.Context()
var span *trace.Span
httpFormat := &propagation.HTTPFormat{}
sc, ok := httpFormat.SpanContextFromRequest(r)
if ok {
ctx, span = trace.StartSpanWithRemoteParent(ctx, "helloworld", sc,
trace.WithSampler(trace.ProbabilitySampler(.10)),
trace.WithSpanKind(trace.SpanKindServer),
)
defer span.End()
}
logger.Log(logging.Entry{
Payload: "Handling new HTTP request",
Severity: logging.Info,
})
logger.Log(logging.Entry{
Payload: StructureLogExample{ThingOne: "dafoolyouare", BatchSize: int(batchAttempt)},
Severity: logging.Info,
Labels: map[string]string{
"rsc": "3711",
"r": "2138",
"gri": "1908",
"adg": "912",
},
})
projectId := os.Getenv("GCP_PROJECT")
_, err := createCustomMetric(projectId, "custom.googleapis.com/dataops/gcfexample/ametric")
if err != nil {
logger.Log(logging.Entry{
Payload: fmt.Sprintf("Unable to create MetricDescription %v", err),
Severity: logging.Error,
Labels: map[string]string{
"rsc": "3711",
"r": "2138",
"gri": "1908",
"adg": "912",
},
})
}
err = writeTimeSeriesValue(projectId, "custom.googleapis.com/dataops/gcfexample/ametric")
if err != nil {
logger.Log(logging.Entry{
Payload: fmt.Sprintf("writeTimeSeriesValue failed %v", err),
Severity: logging.Error,
Labels: map[string]string{
"rsc": "3711",
"r": "2138",
"gri": "1908",
"adg": "912",
},
})
}
w.Write([]byte(fmt.Sprintf("016 Batch Attempts = %d", batchAttempt)))
}
func defaultConfigFunc() error {
var err error
projectId := os.Getenv("GCP_PROJECT")
if projectId == "" {
return fmt.Errorf("GCP_PROJECT environment variable unset or missing")
}
functionName := os.Getenv("FUNCTION_NAME")
if functionName == "" {
return fmt.Errorf("FUNCTION_NAME environment variable unset or missing")
}
region := os.Getenv("FUNCTION_REGION")
if region == "" {
return fmt.Errorf("FUNCTION_REGION environment variable unset or missing")
}
stackdriverExporter, err := stackdriver.NewExporter(stackdriver.Options{ProjectID: projectId})
if err != nil {
return err
}
trace.RegisterExporter(stackdriverExporter)
trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
client, err := logging.NewClient(context.Background(), projectId)
if err != nil {
return err
}
monitoredResource := monitoredres.MonitoredResource{
Type: "cloud_function",
Labels: map[string]string{
"function_name": functionName,
"region": region,
},
}
commonResource := logging.CommonResource(&monitoredResource)
logger = client.Logger(functionName, commonResource)
return nil
}