mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
11 lines
336 B
Go
11 lines
336 B
Go
|
package insertutils
|
||
|
|
||
|
import (
|
||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/flagutil"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// MaxLineSizeBytes is the maximum length of a single line for /insert/* handlers
|
||
|
MaxLineSizeBytes = flagutil.NewBytes("insert.maxLineSizeBytes", 256*1024, "The maximum size of a single line, which can be read by /insert/* handlers")
|
||
|
)
|