Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IstiodDebugURLs (0.18 sec)

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

    			"listeners",
    			"memory",
    			"server_info",
    			"stats/prometheus",
    			"runtime",
    		},
    		ztunnelDebugURLs: []string{
    			"config_dump",
    		},
    	},
    }
    
    // IstiodDebugURLs returns a list of Istiod debug URLs for the given version.
    func IstiodDebugURLs(clusterVersion string) []string {
    	return versionMap[getVersionKey(clusterVersion)].istioDebugURLs
    }
    
    // ProxyDebugURLs returns a list of proxy 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

    	if p.Namespace == "" || p.Pod == "" {
    		return nil, fmt.Errorf("getIstiodInfo requires namespace and pod")
    	}
    	errs := istiomultierror.New()
    	ret := make(map[string]string)
    	for _, url := range common.IstiodDebugURLs(p.ClusterVersion) {
    		out, err := p.Runner.Exec(p.Namespace, p.Pod, common.DiscoveryContainerName, fmt.Sprintf(`pilot-discovery request GET %s`, url), p.DryRun)
    		if err != nil {
    			errs = multierror.Append(errs, err)
    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