You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flagListenAddr=flagSet.String("listenAddr", ":8080", "Listen address and port")
61
68
flagAdminServerAddr=flagSet.String("adminServerAddr", "", "Addr of the admin server to connect to")
69
+
flagHttpLoggerBufferSize=flagSet.Int("loggerBufferSize", loggerhook.DefaultBufferSize, "buffer size for the http logger hook")
70
+
flagHttpLoggerMaxBatchSize=flagSet.Int("loggerMaxBatchSize", loggerhook.DefaultMaxBatchSize, "max size (in bytes) of a logs batch to be sent if it reaches/exceeds it")
71
+
flagHttpLoggerMaxBatchCount=flagSet.Int("loggerMaxBatchCount", loggerhook.DefaultMaxBatchCount, "max count of logs in a batch")
72
+
flagHttpLoggerBatchSendFreq=flagSet.Duration("loggerBatchSendFreq", loggerhook.DefaultBatchSendFreq, "duration that defines the batch sending freq")
flagServerID=flagSet.String("serverID", "", "Set a static server ID, e.g. the host name or another unique identifier. If unset, will use the listener's default")
0 commit comments