forked from grpc/grpc-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogging.go
347 lines (317 loc) · 12.3 KB
/
logging.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
/*
*
* Copyright 2022 gRPC 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 observability
import (
"context"
"fmt"
"strings"
"sync/atomic"
"unsafe"
"github.com/google/uuid"
binlogpb "google.golang.org/grpc/binarylog/grpc_binarylog_v1"
configpb "google.golang.org/grpc/gcp/observability/internal/config"
grpclogrecordpb "google.golang.org/grpc/gcp/observability/internal/logging"
iblog "google.golang.org/grpc/internal/binarylog"
)
// translateMetadata translates the metadata from Binary Logging format to
// its GrpcLogRecord equivalent.
func translateMetadata(m *binlogpb.Metadata) *grpclogrecordpb.GrpcLogRecord_Metadata {
var res grpclogrecordpb.GrpcLogRecord_Metadata
res.Entry = make([]*grpclogrecordpb.GrpcLogRecord_MetadataEntry, len(m.Entry))
for i, e := range m.Entry {
res.Entry[i] = &grpclogrecordpb.GrpcLogRecord_MetadataEntry{
Key: e.Key,
Value: e.Value,
}
}
return &res
}
func setPeerIfPresent(binlogEntry *binlogpb.GrpcLogEntry, grpcLogRecord *grpclogrecordpb.GrpcLogRecord) {
if binlogEntry.GetPeer() != nil {
grpcLogRecord.PeerAddress = &grpclogrecordpb.GrpcLogRecord_Address{
Type: grpclogrecordpb.GrpcLogRecord_Address_Type(binlogEntry.Peer.Type),
Address: binlogEntry.Peer.Address,
IpPort: binlogEntry.Peer.IpPort,
}
}
}
var loggerTypeToEventLogger = map[binlogpb.GrpcLogEntry_Logger]grpclogrecordpb.GrpcLogRecord_EventLogger{
binlogpb.GrpcLogEntry_LOGGER_UNKNOWN: grpclogrecordpb.GrpcLogRecord_LOGGER_UNKNOWN,
binlogpb.GrpcLogEntry_LOGGER_CLIENT: grpclogrecordpb.GrpcLogRecord_LOGGER_CLIENT,
binlogpb.GrpcLogEntry_LOGGER_SERVER: grpclogrecordpb.GrpcLogRecord_LOGGER_SERVER,
}
type binaryMethodLogger struct {
rpcID, serviceName, methodName string
originalMethodLogger iblog.MethodLogger
childMethodLogger iblog.MethodLogger
exporter loggingExporter
}
func (ml *binaryMethodLogger) Log(c iblog.LogEntryConfig) {
// Invoke the original MethodLogger to maintain backward compatibility
if ml.originalMethodLogger != nil {
ml.originalMethodLogger.Log(c)
}
// Fetch the compiled binary logging log entry
if ml.childMethodLogger == nil {
logger.Info("No wrapped method logger found")
return
}
var binlogEntry *binlogpb.GrpcLogEntry
o, ok := ml.childMethodLogger.(interface {
Build(iblog.LogEntryConfig) *binlogpb.GrpcLogEntry
})
if !ok {
logger.Error("Failed to locate the Build method in wrapped method logger")
return
}
binlogEntry = o.Build(c)
// Translate to GrpcLogRecord
grpcLogRecord := &grpclogrecordpb.GrpcLogRecord{
Timestamp: binlogEntry.GetTimestamp(),
RpcId: ml.rpcID,
SequenceId: binlogEntry.GetSequenceIdWithinCall(),
EventLogger: loggerTypeToEventLogger[binlogEntry.Logger],
// Making DEBUG the default LogLevel
LogLevel: grpclogrecordpb.GrpcLogRecord_LOG_LEVEL_DEBUG,
}
switch binlogEntry.GetType() {
case binlogpb.GrpcLogEntry_EVENT_TYPE_UNKNOWN:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_UNKNOWN
case binlogpb.GrpcLogEntry_EVENT_TYPE_CLIENT_HEADER:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_REQUEST_HEADER
if binlogEntry.GetClientHeader() != nil {
methodName := binlogEntry.GetClientHeader().MethodName
// Example method name: /grpc.testing.TestService/UnaryCall
if strings.Contains(methodName, "/") {
tokens := strings.Split(methodName, "/")
if len(tokens) == 3 {
// Record service name and method name for all events
ml.serviceName = tokens[1]
ml.methodName = tokens[2]
} else {
logger.Infof("Malformed method name: %v", methodName)
}
}
grpcLogRecord.Timeout = binlogEntry.GetClientHeader().Timeout
grpcLogRecord.Authority = binlogEntry.GetClientHeader().Authority
grpcLogRecord.Metadata = translateMetadata(binlogEntry.GetClientHeader().Metadata)
}
grpcLogRecord.PayloadTruncated = binlogEntry.GetPayloadTruncated()
setPeerIfPresent(binlogEntry, grpcLogRecord)
case binlogpb.GrpcLogEntry_EVENT_TYPE_SERVER_HEADER:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_RESPONSE_HEADER
grpcLogRecord.Metadata = translateMetadata(binlogEntry.GetServerHeader().Metadata)
grpcLogRecord.PayloadTruncated = binlogEntry.GetPayloadTruncated()
setPeerIfPresent(binlogEntry, grpcLogRecord)
case binlogpb.GrpcLogEntry_EVENT_TYPE_CLIENT_MESSAGE:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_REQUEST_MESSAGE
grpcLogRecord.Message = binlogEntry.GetMessage().GetData()
grpcLogRecord.PayloadSize = binlogEntry.GetMessage().GetLength()
grpcLogRecord.PayloadTruncated = binlogEntry.GetPayloadTruncated()
case binlogpb.GrpcLogEntry_EVENT_TYPE_SERVER_MESSAGE:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_RESPONSE_MESSAGE
grpcLogRecord.Message = binlogEntry.GetMessage().GetData()
grpcLogRecord.PayloadSize = binlogEntry.GetMessage().GetLength()
grpcLogRecord.PayloadTruncated = binlogEntry.GetPayloadTruncated()
case binlogpb.GrpcLogEntry_EVENT_TYPE_CLIENT_HALF_CLOSE:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_HALF_CLOSE
case binlogpb.GrpcLogEntry_EVENT_TYPE_SERVER_TRAILER:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_TRAILER
grpcLogRecord.Metadata = translateMetadata(binlogEntry.GetTrailer().Metadata)
grpcLogRecord.StatusCode = binlogEntry.GetTrailer().GetStatusCode()
grpcLogRecord.StatusMessage = binlogEntry.GetTrailer().GetStatusMessage()
grpcLogRecord.StatusDetails = binlogEntry.GetTrailer().GetStatusDetails()
grpcLogRecord.PayloadTruncated = binlogEntry.GetPayloadTruncated()
setPeerIfPresent(binlogEntry, grpcLogRecord)
case binlogpb.GrpcLogEntry_EVENT_TYPE_CANCEL:
grpcLogRecord.EventType = grpclogrecordpb.GrpcLogRecord_GRPC_CALL_CANCEL
default:
logger.Infof("Unknown event type: %v", binlogEntry.Type)
return
}
grpcLogRecord.ServiceName = ml.serviceName
grpcLogRecord.MethodName = ml.methodName
ml.exporter.EmitGrpcLogRecord(grpcLogRecord)
}
type binaryLogger struct {
// originalLogger is needed to ensure binary logging users won't be impacted
// by this plugin. Users are allowed to subscribe to a completely different
// set of methods.
originalLogger iblog.Logger
// exporter is a loggingExporter and the handle for uploading collected data
// to backends.
exporter unsafe.Pointer // loggingExporter
// logger is a iblog.Logger wrapped for reusing the pattern matching logic
// and the method logger creating logic.
logger unsafe.Pointer // iblog.Logger
}
func (l *binaryLogger) loadExporter() loggingExporter {
ptrPtr := atomic.LoadPointer(&l.exporter)
if ptrPtr == nil {
return nil
}
exporterPtr := (*loggingExporter)(ptrPtr)
return *exporterPtr
}
func (l *binaryLogger) loadLogger() iblog.Logger {
ptrPtr := atomic.LoadPointer(&l.logger)
if ptrPtr == nil {
return nil
}
loggerPtr := (*iblog.Logger)(ptrPtr)
return *loggerPtr
}
func (l *binaryLogger) GetMethodLogger(methodName string) iblog.MethodLogger {
var ol iblog.MethodLogger
if l.originalLogger != nil {
ol = l.originalLogger.GetMethodLogger(methodName)
}
// If user specify a "*" pattern, binarylog will log every single call and
// content. This means the exporting RPC's events will be captured. Even if
// we batch up the uploads in the exporting RPC, the message content of that
// RPC will be logged. Without this exclusion, we may end up with an ever
// expanding message field in log entries, and crash the process with OOM.
if methodName == "/google.logging.v2.LoggingServiceV2/WriteLogEntries" {
return ol
}
// If no exporter is specified, there is no point creating a method
// logger. We don't have any chance to inject exporter after its
// creation.
exporter := l.loadExporter()
if exporter == nil {
return ol
}
// If no logger is specified, e.g., during init period, do nothing.
binLogger := l.loadLogger()
if binLogger == nil {
return ol
}
// If this method is not picked by LoggerConfig, do nothing.
ml := binLogger.GetMethodLogger(methodName)
if ml == nil {
return ol
}
return &binaryMethodLogger{
originalMethodLogger: ol,
childMethodLogger: ml,
rpcID: uuid.NewString(),
exporter: exporter,
}
}
func (l *binaryLogger) Close() {
if l == nil {
return
}
ePtr := atomic.LoadPointer(&l.exporter)
if ePtr != nil {
exporter := (*loggingExporter)(ePtr)
if err := (*exporter).Close(); err != nil {
logger.Infof("Failed to close logging exporter: %v", err)
}
}
}
func validateExistingMethodLoggerConfig(existing *iblog.MethodLoggerConfig, filter *configpb.ObservabilityConfig_LogFilter) bool {
// In future, we could add more validations. Currently, we only check if the
// new filter configs are different than the existing one, if so, we log a
// warning.
if existing != nil && (existing.Header != uint64(filter.HeaderBytes) || existing.Message != uint64(filter.MessageBytes)) {
logger.Warningf("Ignored log_filter config: %+v", filter)
}
return existing == nil
}
func createBinaryLoggerConfig(filters []*configpb.ObservabilityConfig_LogFilter) iblog.LoggerConfig {
config := iblog.LoggerConfig{
Services: make(map[string]*iblog.MethodLoggerConfig),
Methods: make(map[string]*iblog.MethodLoggerConfig),
}
// Try matching the filters one by one, pick the first match. The
// correctness of the log filter pattern is ensured by config.go.
for _, filter := range filters {
if filter.Pattern == "*" {
// Match a "*"
if !validateExistingMethodLoggerConfig(config.All, filter) {
continue
}
config.All = &iblog.MethodLoggerConfig{Header: uint64(filter.HeaderBytes), Message: uint64(filter.MessageBytes)}
continue
}
tokens := strings.SplitN(filter.Pattern, "/", 2)
filterService := tokens[0]
filterMethod := tokens[1]
if filterMethod == "*" {
// Handle "p.s/*" case
if !validateExistingMethodLoggerConfig(config.Services[filterService], filter) {
continue
}
config.Services[filterService] = &iblog.MethodLoggerConfig{Header: uint64(filter.HeaderBytes), Message: uint64(filter.MessageBytes)}
continue
}
// Exact match like "p.s/m"
if !validateExistingMethodLoggerConfig(config.Methods[filter.Pattern], filter) {
continue
}
config.Methods[filter.Pattern] = &iblog.MethodLoggerConfig{Header: uint64(filter.HeaderBytes), Message: uint64(filter.MessageBytes)}
}
return config
}
// start is the core logic for setting up the custom binary logging logger, and
// it's also useful for testing.
func (l *binaryLogger) start(config *configpb.ObservabilityConfig, exporter loggingExporter) error {
filters := config.GetLogFilters()
if len(filters) == 0 || exporter == nil {
// Doing nothing is allowed
if exporter != nil {
// The exporter is owned by binaryLogger, so we should close it if
// we are not planning to use it.
exporter.Close()
}
logger.Info("Skipping gRPC Observability logger: no config")
return nil
}
binLogger := iblog.NewLoggerFromConfig(createBinaryLoggerConfig(filters))
if binLogger != nil {
atomic.StorePointer(&l.logger, unsafe.Pointer(&binLogger))
}
atomic.StorePointer(&l.exporter, unsafe.Pointer(&exporter))
logger.Info("Start gRPC Observability logger")
return nil
}
func (l *binaryLogger) Start(ctx context.Context, config *configpb.ObservabilityConfig) error {
if config == nil || !config.GetEnableCloudLogging() {
return nil
}
if config.GetDestinationProjectId() == "" {
return fmt.Errorf("failed to enable CloudLogging: empty destination_project_id")
}
exporter, err := newCloudLoggingExporter(ctx, config.DestinationProjectId)
if err != nil {
return fmt.Errorf("unable to create CloudLogging exporter: %v", err)
}
l.start(config, exporter)
return nil
}
func newBinaryLogger(iblogger iblog.Logger) *binaryLogger {
return &binaryLogger{
originalLogger: iblogger,
}
}
var defaultLogger *binaryLogger
func prepareLogging() {
defaultLogger = newBinaryLogger(iblog.GetLogger())
iblog.SetLogger(defaultLogger)
}