Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrintRemoteListenerSummary (0.31 sec)

  1. istioctl/pkg/writer/envoy/configdump/listener.go

    	}
    
    	return addrs
    }
    
    func retrieveListenerPort(l *listener.Listener) uint32 {
    	return l.Address.GetSocketAddress().GetPortValue()
    }
    
    func (c *ConfigWriter) PrintRemoteListenerSummary() error {
    	w, listeners, err := c.setupListenerConfigWriter()
    	if err != nil {
    		return err
    	}
    	// Sort by port, addr, type
    	sort.Slice(listeners, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig.go

    				Address: address,
    				Port:    uint32(port),
    				Type:    listenerType,
    				Verbose: verboseProxyConfig,
    			}
    
    			if waypointProxyConfig {
    				return configWriter.PrintRemoteListenerSummary()
    			}
    			switch outputFormat {
    			case summaryOutput:
    				return configWriter.PrintListenerSummary(filter)
    			case jsonOutput, yamlOutput:
    				return configWriter.PrintListenerDump(filter, outputFormat)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top