Documentation ¶
Index ¶
Constants ¶
View Source
const ( // ClusterName is the default cluster name ClusterName = ciliumDefaults.ClusterName // DialTimeout is the timeout that is used when establishing a new // connection. DialTimeout = 5 * time.Second // HealthCheckInterval is the time interval between health checks. HealthCheckInterval = 5 * time.Second // GopsPort is the default port for gops to listen on. GopsPort = 9893 // PprofAddress is the default port for pprof to listen on. PprofAddress = "localhost" // PprofPort is the default port for pprof to listen on. PprofPort = 6062 // RetryTimeout is the duration to wait between reconnection attempts. RetryTimeout = 30 * time.Second // PeerTarget is the address of the peer service. PeerTarget = "unix://" + ciliumDefaults.HubbleSockPath // PeerServiceName is the name of the peer service, should it exist. PeerServiceName = "hubble-peer" // SortBufferMaxLen is the max number of flows that can be buffered for // sorting before being sen to the client. SortBufferMaxLen = 100 // SortBufferDrainTimeout is the rate at which flows are drained from the // sorting buffer when it is not full. SortBufferDrainTimeout = 1 * time.Second // ErrorAggregationWindow is the time window during which errors with the // same message are coalesced. ErrorAggregationWindow = 10 * time.Second // PeerUpdateInterval is the time interval in which relay is checking for // newly joined peers for long running requests PeerUpdateInterval = 2 * time.Second )
Variables ¶
View Source
var ( // ListenAddress is the address on which the Hubble Relay server listens // for incoming gRPC requests. ListenAddress = fmt.Sprintf(":%d", hubbledefaults.RelayPort) // HealthListenAddress is the address on which the Hubble Relay gRPC health // server listens on HealthListenAddress = fmt.Sprintf(":%d", 4222) )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.