-
Notifications
You must be signed in to change notification settings - Fork 489
/
server.go
399 lines (355 loc) · 11.9 KB
/
server.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
// Package server implements the HTTP and gRPC server used throughout Grafana
// Agent.
//
// It is a grafana/agent-specific fork of github.com/weaveworks/common/server.
package server
import (
"context"
"errors"
"fmt"
"net"
"net/http"
_ "net/http/pprof" // anonymous import to get the pprof handler registered
"reflect"
"sync"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/gorilla/mux"
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
"github.com/hashicorp/go-multierror"
"github.com/oklog/run"
otgrpc "github.com/opentracing-contrib/go-grpc"
"github.com/opentracing/opentracing-go"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/weaveworks/common/logging"
"github.com/weaveworks/common/middleware"
"golang.org/x/net/netutil"
"google.golang.org/grpc"
"google.golang.org/grpc/keepalive"
)
// Server wraps an HTTP and gRPC server with some common initialization.
//
// Unless instrumentation is disabled in the Servers config, Prometheus metrics
// will be automatically generated for the server.
type Server struct {
optsMut sync.Mutex
opts Flags
// Listeners to use for connections. These will use TLS when TLS is enabled.
httpListener net.Listener
grpcListener net.Listener
updateHTTPTLS func(TLSConfig) error
updateGRPCTLS func(TLSConfig) error
HTTP *mux.Router
HTTPServer *http.Server
GRPC *grpc.Server
}
type metrics struct {
tcpConnections *prometheus.GaugeVec
tcpConnectionsLimit *prometheus.GaugeVec
requestDuration *prometheus.HistogramVec
receivedMessageSize *prometheus.HistogramVec
sentMessageSize *prometheus.HistogramVec
inflightRequests *prometheus.GaugeVec
}
func newMetrics(r prometheus.Registerer) (*metrics, error) {
var m metrics
// Create metrics for the server
m.tcpConnections = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "agent_tcp_connections",
Help: "Current number of accepted TCP connections.",
}, []string{"protocol"})
m.tcpConnectionsLimit = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "agent_tcp_connections_limit",
Help: "The maximum number of TCP connections that can be accepted (0 = unlimited)",
}, []string{"protocol"})
m.requestDuration = prometheus.NewHistogramVec(prometheus.HistogramOpts{
Name: "agent_request_duration_seconds",
Help: "Time in seconds spent serving HTTP requests.",
}, []string{"method", "route", "status_code", "ws"})
m.receivedMessageSize = prometheus.NewHistogramVec(prometheus.HistogramOpts{
Name: "agent_request_message_bytes",
Help: "Size (in bytes) of messages received in the request.",
Buckets: middleware.BodySizeBuckets,
}, []string{"method", "route"})
m.sentMessageSize = prometheus.NewHistogramVec(prometheus.HistogramOpts{
Name: "agent_response_message_bytes",
Help: "Size (in bytes) of messages sent in response.",
Buckets: middleware.BodySizeBuckets,
}, []string{"method", "route"})
m.inflightRequests = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "agent_inflight_requests",
Help: "Current number of inflight requests.",
}, []string{"method", "route"})
if r != nil {
// Register all of our metrics
cc := []prometheus.Collector{
m.tcpConnections, m.tcpConnectionsLimit, m.requestDuration, m.receivedMessageSize,
m.sentMessageSize, m.inflightRequests,
}
for _, c := range cc {
if err := r.Register(c); err != nil {
return nil, fmt.Errorf("failed registering server metrics: %w", err)
}
}
}
return &m, nil
}
// New creates a new Server with the given config.
//
// r is used to register Server-specific metrics. If r is nil, no metrics will
// be registered.
//
// g is used for collecting metrics from the instrumentation handlers, when
// enabled. If g is nil, a /metrics endpoint will not be registered.
func New(l log.Logger, r prometheus.Registerer, g prometheus.Gatherer, cfg Config) (srv *Server, err error) {
// TODO(rfratto): make a argument and remove from Config struct in v0.26.0.
opts := cfg.Flags
if l == nil {
l = log.NewNopLogger()
}
wrappedLogger := GoKitLogger(l)
m, err := newMetrics(r)
if err != nil {
return nil, err
}
// Create listeners first so we can fail early if the port is in use.
httpListener, err := newHTTPListener(&opts.HTTP, m)
if err != nil {
return nil, err
}
defer func() {
if err != nil {
_ = httpListener.Close()
}
}()
grpcListener, err := newGRPCListener(&opts.GRPC, m)
if err != nil {
return nil, err
}
defer func() {
if err != nil {
_ = httpListener.Close()
}
}()
// Configure TLS
var (
updateHTTPTLS func(TLSConfig) error
updateGRPCTLS func(TLSConfig) error
)
if opts.HTTP.UseTLS {
httpTLSListener, err := newTLSListener(httpListener, cfg.HTTP.TLSConfig)
if err != nil {
return nil, fmt.Errorf("generating HTTP TLS config: %w", err)
}
httpListener = httpTLSListener
updateHTTPTLS = httpTLSListener.ApplyConfig
}
if opts.GRPC.UseTLS {
grpcTLSListener, err := newTLSListener(grpcListener, cfg.GRPC.TLSConfig)
if err != nil {
return nil, fmt.Errorf("generating GRPC TLS config: %w", err)
}
grpcListener = grpcTLSListener
updateGRPCTLS = grpcTLSListener.ApplyConfig
}
level.Info(l).Log(
"msg", "server listening on addresses",
"http", httpListener.Addr(), "grpc", grpcListener.Addr(),
"http_tls_enabled", opts.HTTP.UseTLS, "grpc_tls_enabled", opts.GRPC.UseTLS,
)
// Build servers
grpcServer := newGRPCServer(wrappedLogger, &opts.GRPC, m)
httpServer, router, err := newHTTPServer(wrappedLogger, g, &opts, m)
if err != nil {
return nil, err
}
return &Server{
opts: opts,
httpListener: httpListener,
grpcListener: grpcListener,
updateHTTPTLS: updateHTTPTLS,
updateGRPCTLS: updateGRPCTLS,
HTTP: router,
HTTPServer: httpServer,
GRPC: grpcServer,
}, nil
}
func newHTTPListener(opts *HTTPFlags, m *metrics) (net.Listener, error) {
httpAddress := opts.GetListenAddress()
if httpAddress == "" {
return nil, fmt.Errorf("http address not set")
}
httpListener, err := net.Listen(opts.ListenNetwork, httpAddress)
if err != nil {
return nil, fmt.Errorf("creating HTTP listener: %w", err)
}
httpListener = middleware.CountingListener(httpListener, m.tcpConnections.WithLabelValues("http"))
m.tcpConnectionsLimit.WithLabelValues("http").Set(float64(opts.ConnLimit))
if opts.ConnLimit > 0 {
httpListener = netutil.LimitListener(httpListener, opts.ConnLimit)
}
return httpListener, nil
}
func newGRPCListener(opts *GRPCFlags, m *metrics) (net.Listener, error) {
grpcAddress := opts.GetListenAddress()
if grpcAddress == "" {
return nil, fmt.Errorf("gRPC address not set")
}
grpcListener, err := net.Listen(opts.ListenNetwork, grpcAddress)
if err != nil {
return nil, fmt.Errorf("creating gRPC listener: %w", err)
}
grpcListener = middleware.CountingListener(grpcListener, m.tcpConnections.WithLabelValues("grpc"))
m.tcpConnectionsLimit.WithLabelValues("grpc").Set(float64(opts.ConnLimit))
if opts.ConnLimit > 0 {
grpcListener = netutil.LimitListener(grpcListener, opts.ConnLimit)
}
return grpcListener, nil
}
func newGRPCServer(l logging.Interface, opts *GRPCFlags, m *metrics) *grpc.Server {
serverLog := middleware.GRPCServerLog{
WithRequest: true,
Log: l,
}
grpcOptions := []grpc.ServerOption{
grpc.UnaryInterceptor(grpc_middleware.ChainUnaryServer(
serverLog.UnaryServerInterceptor,
otgrpc.OpenTracingServerInterceptor(opentracing.GlobalTracer()),
middleware.UnaryServerInstrumentInterceptor(m.requestDuration),
)),
grpc.StreamInterceptor(grpc_middleware.ChainStreamServer(
serverLog.StreamServerInterceptor,
otgrpc.OpenTracingStreamServerInterceptor(opentracing.GlobalTracer()),
middleware.StreamServerInstrumentInterceptor(m.requestDuration),
)),
grpc.KeepaliveParams(keepalive.ServerParameters{
MaxConnectionIdle: opts.MaxConnectionIdle,
MaxConnectionAge: opts.MaxConnectionAge,
MaxConnectionAgeGrace: opts.MaxConnectionAgeGrace,
Time: opts.KeepaliveTime,
Timeout: opts.KeepaliveTimeout,
}),
grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
MinTime: opts.MinTimeBetweenPings,
PermitWithoutStream: opts.PingWithoutStreamAllowed,
}),
grpc.MaxRecvMsgSize(opts.MaxRecvMsgSize),
grpc.MaxSendMsgSize(opts.MaxSendMsgSize),
grpc.MaxConcurrentStreams(uint32(opts.MaxConcurrentStreams)),
grpc.StatsHandler(middleware.NewStatsHandler(m.receivedMessageSize, m.sentMessageSize, m.inflightRequests)),
}
return grpc.NewServer(grpcOptions...)
}
func newHTTPServer(l logging.Interface, g prometheus.Gatherer, opts *Flags, m *metrics) (*http.Server, *mux.Router, error) {
router := mux.NewRouter()
if opts.RegisterInstrumentation && g != nil {
router.Handle("/metrics", promhttp.HandlerFor(g, promhttp.HandlerOpts{
EnableOpenMetrics: true,
}))
router.PathPrefix("/debug/pprof").Handler(http.DefaultServeMux)
}
var sourceIPs *middleware.SourceIPExtractor
if opts.LogSourceIPs {
var err error
sourceIPs, err = middleware.NewSourceIPs(opts.LogSourceIPsHeader, opts.LogSourceIPsRegex)
if err != nil {
return nil, nil, fmt.Errorf("error setting up source IP extraction: %v", err)
}
}
httpMiddleware := []middleware.Interface{
middleware.Tracer{
RouteMatcher: router,
SourceIPs: sourceIPs,
},
middleware.Log{
Log: l,
SourceIPs: sourceIPs,
},
middleware.Instrument{
RouteMatcher: router,
Duration: m.requestDuration,
RequestBodySize: m.receivedMessageSize,
ResponseBodySize: m.sentMessageSize,
InflightRequests: m.inflightRequests,
},
}
httpServer := &http.Server{
ReadTimeout: opts.HTTP.ReadTimeout,
WriteTimeout: opts.HTTP.WriteTimeout,
IdleTimeout: opts.HTTP.IdleTimeout,
Handler: middleware.Merge(httpMiddleware...).Wrap(router),
}
return httpServer, router, nil
}
// HTTPAddress returns the HTTP net.Addr of this Server.
func (s *Server) HTTPAddress() net.Addr { return s.httpListener.Addr() }
// GRPCAddress returns the GRPC net.Addr of this Server.
func (s *Server) GRPCAddress() net.Addr { return s.grpcListener.Addr() }
// ApplyConfig applies changes to the Server block. ApplyConfig will fail if
// the cfg.Flags field has been changed.
//
// v0.26.0 will remove YAML support for cfg.Flags and remove it out of the
// Config struct to simplify dynamic updating.
func (s *Server) ApplyConfig(cfg Config) error {
s.optsMut.Lock()
defer s.optsMut.Unlock()
// N.B. LogLevel/LogFormat support dynamic updating but are never used in
// *Server, so they're ignored here.
if s.updateHTTPTLS != nil {
if err := s.updateHTTPTLS(cfg.HTTP.TLSConfig); err != nil {
return fmt.Errorf("updating HTTP TLS settings: %w", err)
}
}
if s.updateGRPCTLS != nil {
if err := s.updateGRPCTLS(cfg.GRPC.TLSConfig); err != nil {
return fmt.Errorf("updating gRPC TLS settings: %w", err)
}
}
if !reflect.DeepEqual(s.opts, cfg.Flags) {
return fmt.Errorf("cannot dynamically update values for deprecated YAML fields")
}
return nil
}
// Run the server until en error is received or the given context is canceled.
// Run may not be re-called after it exits.
func (s *Server) Run(ctx context.Context) error {
ctx, cancel := context.WithCancel(ctx)
defer cancel()
var g run.Group
g.Add(func() error {
<-ctx.Done()
return nil
}, func(_ error) {
cancel()
})
g.Add(func() error {
err := s.HTTPServer.Serve(s.httpListener)
if errors.Is(err, http.ErrServerClosed) {
err = nil
}
return err
}, func(_ error) {
ctx, cancel := context.WithTimeout(context.Background(), s.opts.GracefulShutdownTimeout)
defer cancel()
_ = s.HTTPServer.Shutdown(ctx)
})
g.Add(func() error {
err := s.GRPC.Serve(s.grpcListener)
if errors.Is(err, grpc.ErrServerStopped) {
err = nil
}
return err
}, func(_ error) {
s.GRPC.GracefulStop()
})
return g.Run()
}
// Close forcibly closes the server's listeners.
func (s *Server) Close() error {
errs := multierror.Append(
s.httpListener.Close(),
s.grpcListener.Close(),
)
return errs.ErrorOrNil()
}