Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProxyDebugURLs (0.22 sec)

  1. tools/bug-report/pkg/common/common.go

    func IstiodDebugURLs(clusterVersion string) []string {
    	return versionMap[getVersionKey(clusterVersion)].istioDebugURLs
    }
    
    // ProxyDebugURLs returns a list of proxy debug URLs for the given version.
    func ProxyDebugURLs(clusterVersion string) []string {
    	return versionMap[getVersionKey(clusterVersion)].proxyDebugURLs
    }
    
    // ZtunnelDebugURLs returns a list of ztunnel debug URLs for the given version.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/content/content.go

    	errs := istiomultierror.New()
    	if p.Namespace == "" || p.Pod == "" {
    		return nil, fmt.Errorf("getProxyInfo requires namespace and pod")
    	}
    	ret := make(map[string]string)
    	for _, url := range common.ProxyDebugURLs(p.ClusterVersion) {
    		out, err := p.Runner.EnvoyGet(p.Namespace, p.Pod, url, p.DryRun)
    		if err != nil {
    			errs = multierror.Append(errs, err)
    			continue
    		}
    		ret[url] = out
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top