VictoriaMetrics/app/vlinsert/common/flags.go
Alexander Marshalov bf081d157e
jsonline support for data ingestion in vlinsert (#4487)
added json lines / json stream format for ingestion to vlinsert
2023-06-21 15:31:28 +02:00

8 lines
342 B
Go

package common
import "github.com/VictoriaMetrics/VictoriaMetrics/lib/flagutil"
var (
// MaxLineSizeBytes is the maximum size of a single line, which can be read by /insert/* handlers
MaxLineSizeBytes = flagutil.NewBytes("insert.maxLineSizeBytes", 256*1024, "The maximum size of a single line, which can be read by /insert/* handlers")
)