Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for registerScope (0.42 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder.go

    	"istio.io/istio/pkg/util/hash"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var (
    	Separator = []byte{'~'}
    	Slash     = []byte{'/'}
    
    	// same as the above "xds" package
    	log = istiolog.RegisterScope("ads", "ads debugging")
    )
    
    // ConnectOriginate is the name for the resources associated with the origination of HTTP CONNECT.
    // Duplicated from v1alpha3/waypoint.go to avoid import cycle
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.go

    	ecdsLastAckVersion    atomic.String
    	ecdsLastNonce         atomic.String
    	downstreamGrpcOptions []grpc.ServerOption
    	istiodSAN             string
    }
    
    var proxyLog = log.RegisterScope("xdsproxy", "XDS Proxy in Istio Agent")
    
    const (
    	localHostIPv4 = "127.0.0.1"
    	localHostIPv6 = "::1"
    )
    
    func initXdsProxy(ia *Agent) (*XdsProxy, error) {
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/xds"
    )
    
    var deltaLog = istiolog.RegisterScope("delta", "delta xds debugging")
    
    func (s *DiscoveryServer) StreamDeltas(stream DeltaDiscoveryStream) error {
    	if knativeEnv != "" && firstRequest.Load() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    const (
    	// Set some high upper bound to avoid weird configurations
    	// nolint: revive
    	connectTimeoutMax = time.Hour
    	// nolint: revive
    	connectTimeoutMin = time.Millisecond
    )
    
    var scope = log.RegisterScope("validation", "CRD validation debugging")
    
    type Warning error
    
    // Validation holds errors and warnings. They can be joined with additional errors by called AppendValidation
    type Validation struct {
    	Err     error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller.go

    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	_   serviceregistry.Instance = &Controller{}
    	log                          = istiolog.RegisterScope("serviceentry", "ServiceEntry registry")
    )
    
    var (
    	prime  = 65011     // Used for secondary hash function.
    	maxIPs = 256 * 254 // Maximum possible IPs for address allocation.
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// by meshNetworks or "networking.istio.io/gatewayPort"
    	DefaultNetworkGatewayPort = 15443
    )
    
    var log = istiolog.RegisterScope("kube", "kubernetes service registry controller")
    
    var (
    	typeTag  = monitoring.CreateLabel("type")
    	eventTag = monitoring.CreateLabel("event")
    
    	k8sEvents = monitoring.NewSum(
    		"pilot_k8s_reg_events",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top