2024-11-22 16:10:05 +00:00
|
|
|
package diagnostic
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
const (
|
2024-11-25 19:24:51 +00:00
|
|
|
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
|
|
|
|
tunnelStateCollectorName = "tunnelState" // used for logging purposes
|
|
|
|
configurationCollectorName = "configuration" // used for logging purposes
|
|
|
|
configurationKeyUid = "uid"
|
2024-11-22 16:10:05 +00:00
|
|
|
)
|