cloud.google.com/go/logging.Logger.bundler (field)
15 uses
cloud.google.com/go/logging (current package)
logging.go#L234: bundler *bundler.Bundler
logging.go#L345: func (c concurrentWriteLimit) set(l *Logger) { l.bundler.HandlerLimit = int(c) }
logging.go#L357: func (d delayThreshold) set(l *Logger) { l.bundler.DelayThreshold = time.Duration(d) }
logging.go#L369: func (e entryCountThreshold) set(l *Logger) { l.bundler.BundleCountThreshold = int(e) }
logging.go#L380: func (e entryByteThreshold) set(l *Logger) { l.bundler.BundleByteThreshold = int(e) }
logging.go#L392: func (e entryByteLimit) set(l *Logger) { l.bundler.BundleByteLimit = int(e) }
logging.go#L406: func (b bufferedByteLimit) set(l *Logger) { l.bundler.BufferedByteLimit = int(b) }
logging.go#L441: l.bundler = bundler.NewBundler(&logpb.LogEntry{}, func(entries interface{}) {
logging.go#L444: l.bundler.DelayThreshold = DefaultDelayThreshold
logging.go#L445: l.bundler.BundleCountThreshold = DefaultEntryCountThreshold
logging.go#L446: l.bundler.BundleByteThreshold = DefaultEntryByteThreshold
logging.go#L447: l.bundler.BufferedByteLimit = DefaultBufferedByteLimit
logging.go#L462: l.bundler.Flush()
logging.go#L793: if err := l.bundler.Add(ent, proto.Size(ent)); err != nil {
logging.go#L805: l.bundler.Flush()
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |