package runtimelogs const ( // MaxCleanupBytes is the maximum file size eligible for sync cleanup. MaxCleanupBytes = 512 * 1024 * 1024 // DefaultTailLines is the default number of lines returned from Tail. DefaultTailLines = 200 // MaxTailLines caps the lines query parameter. MaxTailLines = 2000 // MaxTailBytes caps tail read size. MaxTailBytes = 256 * 1024 // MaxGrepLen caps optional grep filter length. MaxGrepLen = 128 // ServiceNameAll is the only process role that may access runtime logs FS. ServiceNameAll = "evobgp-all" )