10 lines
300 B
Go
10 lines
300 B
Go
|
package diagnostic
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
const (
|
||
|
defaultCollectorTimeout = time.Second * 10 // This const define the timeout value of a collector operation.
|
||
|
collectorField = "collector" // used for logging purposes
|
||
|
systemCollectorName = "system" // used for logging purposes
|
||
|
)
|