-
Notifications
You must be signed in to change notification settings - Fork 592
/
main.go
232 lines (190 loc) · 6.42 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
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
/*
Copyright 2018 The Knative 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 main
import (
"encoding/json"
"errors"
"flag"
"fmt"
"log"
"net/http"
"os"
"strconv"
"syscall"
"time"
"go.opencensus.io/plugin/ochttp"
"go.uber.org/zap"
"knative.dev/eventing/pkg/eventingtls"
duckv1 "knative.dev/pkg/apis/duck/v1"
"knative.dev/pkg/signals"
"knative.dev/pkg/tracing"
"knative.dev/pkg/tracing/config"
"knative.dev/pkg/tracing/propagation/tracecontextb3"
"github.com/cloudevents/sdk-go/observability/opencensus/v2/client"
cloudevents "github.com/cloudevents/sdk-go/v2"
cehttp "github.com/cloudevents/sdk-go/v2/protocol/http"
"github.com/kelseyhightower/envconfig"
)
type Heartbeat struct {
Sequence int `json:"id"`
Label string `json:"label"`
Msg string `json:"msg,omitempty"`
}
var (
eventSource string
eventType string
sink string
cacerts string
label string
periodStr string
msg string
)
func init() {
flag.StringVar(&eventSource, "eventSource", "", "the event-source (CloudEvents)")
flag.StringVar(&eventType, "eventType", "dev.knative.eventing.samples.heartbeat", "the event-type (CloudEvents)")
flag.StringVar(&sink, "sink", "", "the host url to heartbeat to")
flag.StringVar(&cacerts, "cacerts", "", "the ca cert for the host url to heartbeat to")
flag.StringVar(&label, "label", "", "a special label")
flag.StringVar(&periodStr, "period", "5s", "the duration between heartbeats. Supported formats: Go (https://pkg.go.dev/time#ParseDuration), integers (interpreted as seconds)")
flag.StringVar(&msg, "msg", "", "message content in data.msg")
}
type envConfig struct {
// Sink URL where to send heartbeat cloudevents
Sink string `envconfig:"K_SINK"`
// CACert is the certificate for enabling HTTPS in Sink URL
CACerts string `envconfig:"K_CA_CERTS"`
// CEOverrides are the CloudEvents overrides to be applied to the outbound event.
CEOverrides string `envconfig:"K_CE_OVERRIDES"`
// Name of this pod.
Name string `envconfig:"POD_NAME" required:"true"`
// Namespace this pod exists in.
Namespace string `envconfig:"POD_NAMESPACE" required:"true"`
// Whether to run continuously or exit.
OneShot bool `envconfig:"ONE_SHOT" default:"false"`
// JSON configuration for tracing
TracingConfig string `envconfig:"K_CONFIG_TRACING"`
}
func main() {
flag.Parse()
ctx := signals.NewContext()
ctx = cloudevents.ContextWithRetriesExponentialBackoff(ctx, 20*time.Millisecond, 10)
defer maybeQuitIstioProxy()
var env envConfig
if err := envconfig.Process("", &env); err != nil {
log.Printf("[ERROR] Failed to process env var: %s", err)
os.Exit(1)
}
if env.Sink != "" {
sink = env.Sink
}
if env.CACerts != "" {
cacerts = env.CACerts
}
var ceOverrides *duckv1.CloudEventOverrides
if len(env.CEOverrides) > 0 {
overrides := duckv1.CloudEventOverrides{}
err := json.Unmarshal([]byte(env.CEOverrides), &overrides)
if err != nil {
log.Printf("[ERROR] Unparseable CloudEvents overrides %s: %v", env.CEOverrides, err)
os.Exit(1)
}
ceOverrides = &overrides
}
conf, err := config.JSONToTracingConfig(env.TracingConfig)
if err != nil {
log.Printf("Failed to read tracing config, using the no-op default: %v", err)
}
tracer, err := tracing.SetupPublishingWithStaticConfig(zap.L().Sugar(), "", conf)
if err != nil {
log.Fatalf("Failed to initialize tracing: %v", err)
}
defer tracer.Shutdown(ctx)
opts := make([]cehttp.Option, 0, 1)
opts = append(opts, cloudevents.WithTarget(sink))
if eventingtls.IsHttpsSink(sink) {
clientConfig := eventingtls.NewDefaultClientConfig()
clientConfig.CACerts = &cacerts
httpTransport := http.DefaultTransport.(*http.Transport).Clone()
httpTransport.TLSClientConfig, err = eventingtls.GetTLSClientConfig(clientConfig)
if err != nil {
log.Fatalf("Failed to get TLS Client Config: %v", err)
}
transport := &ochttp.Transport{
Base: httpTransport,
Propagation: tracecontextb3.TraceContextEgress,
}
opts = append(opts, cehttp.WithRoundTripper(transport))
}
c, err := client.NewClientHTTP(opts, nil)
if err != nil {
log.Fatalf("failed to create client: %s", err.Error())
}
// default to 5s if unset, try to parse as a duration, then as an int
var period time.Duration
if periodStr == "" {
period = 5 * time.Second
} else if p, err := time.ParseDuration(periodStr); err == nil {
period = p
} else if p, err := strconv.Atoi(periodStr); err == nil {
period = time.Duration(p) * time.Second
} else {
log.Fatalf("Invalid period interval provided: %q", periodStr)
}
if eventSource == "" {
eventSource = fmt.Sprintf("https://knative.dev/eventing-contrib/cmd/heartbeats/#%s/%s", env.Namespace, env.Name)
log.Printf("Heartbeats Source: %s", eventSource)
}
if len(label) > 0 && label[0] == '"' {
label, _ = strconv.Unquote(label)
}
hb := &Heartbeat{
Sequence: 0,
Label: label,
Msg: msg,
}
ticker := time.NewTicker(period)
for {
hb.Sequence++
event := cloudevents.NewEvent("1.0")
event.SetType(eventType)
event.SetSource(eventSource)
event.SetExtension("the", 42)
event.SetExtension("heart", "yes")
event.SetExtension("beats", true)
if ceOverrides != nil && ceOverrides.Extensions != nil {
for n, v := range ceOverrides.Extensions {
event.SetExtension(n, v)
}
}
if err := event.SetData(cloudevents.ApplicationJSON, hb); err != nil {
log.Printf("failed to set cloudevents msg: %s", err.Error())
}
log.Printf("sending cloudevent to %s", sink)
if res := c.Send(ctx, event); !cloudevents.IsACK(res) {
log.Printf("failed to send cloudevent: %v", res)
}
if env.OneShot {
return
}
// Wait for next tick
<-ticker.C
}
}
// maybeQuitIstioProxy shuts down Istio's proxy when available.
func maybeQuitIstioProxy() {
req, _ := http.NewRequest(http.MethodPost, "http://localhost:15020/quitquitquit", nil)
_, err := http.DefaultClient.Do(req)
if err != nil && !errors.Is(err, syscall.ECONNREFUSED) {
log.Println("[Ignore this warning if Istio proxy is not used on this pod]", err)
}
}