Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BuildStatPrefix (0.28 sec)

  1. pilot/pkg/networking/core/networkfilter.go

    		statPrefix := clusterName
    		// If stat name is configured, build the stat prefix from configured pattern.
    		if len(push.Mesh.OutboundClusterStatName) != 0 && service != nil {
    			statPrefix = telemetry.BuildStatPrefix(push.Mesh.OutboundClusterStatName, routes[0].Destination.Host,
    				routes[0].Destination.Subset, port, 0, &service.Attributes)
    		}
    
    		return lb.buildOutboundNetworkFiltersWithSingleDestination(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    	if direction == model.TrafficDirectionOutbound {
    		// If stat name is configured, build the alternate stats name.
    		if len(cb.req.Push.Mesh.OutboundClusterStatName) != 0 {
    			ec.cluster.AltStatName = telemetry.BuildStatPrefix(cb.req.Push.Mesh.OutboundClusterStatName,
    				string(service.Hostname), subset, port, 0, &service.Attributes)
    		}
    	}
    
    	return ec
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway.go

    			clusterName := model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, "", service.Hostname, port.Port)
    			statPrefix := clusterName
    			if len(push.Mesh.OutboundClusterStatName) != 0 {
    				statPrefix = telemetry.BuildStatPrefix(push.Mesh.OutboundClusterStatName, string(service.Hostname), "", port, 0, &service.Attributes)
    			}
    			destinationRule := CastDestinationRule(proxy.SidecarScope.DestinationRule(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top