Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PrintListenerSummary (0.17 sec)

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

    				outputs = append(outputs, fmt.Sprintf("%v%v%v -> %v", n, equality, k, child))
    			}
    		}
    	}
    	return outputs, len(outputs) > 0
    }
    
    // PrintListenerSummary prints a summary of the relevant listeners in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintListenerSummary(filter ListenerFilter) error {
    	w, listeners, err := c.setupListenerConfigWriter()
    	if err != nil {
    		return err
    	}
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/configdump.go

    		return err
    	}
    	_, _ = c.Stdout.Write([]byte("\n"))
    	if err := c.PrintClusterSummary(cf); err != nil {
    		return err
    	}
    	_, _ = c.Stdout.Write([]byte("\n"))
    	if err := c.PrintListenerSummary(lf); err != nil {
    		return err
    	}
    	_, _ = c.Stdout.Write([]byte("\n"))
    	if err := c.PrintRouteSummary(rf); err != nil {
    		return err
    	}
    	_, _ = c.Stdout.Write([]byte("\n"))
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 20:46:41 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig.go

    				Verbose: verboseProxyConfig,
    			}
    
    			if waypointProxyConfig {
    				return configWriter.PrintRemoteListenerSummary()
    			}
    			switch outputFormat {
    			case summaryOutput:
    				return configWriter.PrintListenerSummary(filter)
    			case jsonOutput, yamlOutput:
    				return configWriter.PrintListenerDump(filter, outputFormat)
    			default:
    				return fmt.Errorf("output format %q not supported", outputFormat)
    			}
    		},
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
Back to top