mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 16:30:55 +01:00
d9d759bc90
added json lines / json stream format for ingestion to vlinsert
9 lines
342 B
Go
9 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")
|
|
)
|