github.com/qlik-oss/gopherciser@v0.18.6/globals/constant/parameters.go (about) 1 package constant 2 3 import ( 4 "time" 5 6 "github.com/qlik-oss/gopherciser/helpers" 7 ) 8 9 const ( 10 // MaxStallTime is the threshold time before triggering stall warnings. 11 MaxStallTime = 31 * time.Millisecond //windows time api used by golang may have up to 30ms error margin 12 // MaxBodySize Maximum byte size for logging request/response body into traffic logs. 13 MaxBodySize = 64000 14 // ReloadPollInterval Default interval between polls for reload status 15 ReloadPollInterval = helpers.TimeDuration(1 * time.Second) 16 17 // ResourceTypeQVapp Resource type for QlikView application, used for app upload and deletion 18 ResourceTypeQVapp = "qvapp" 19 // ResourceTypeQVapp Resource type for Qlik Sense application, used for app upload and deletion 20 ResourceTypeApp = "app" 21 )