Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AnalyzePath (0.14 sec)

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

    }
    
    func OperatorPath(rootDir, namespace, pod string) string {
    	return filepath.Join(getRootDir(rootDir), operatorLogsPathSubdir, namespace, pod)
    }
    
    func AnalyzePath(rootDir, namespace string) string {
    	return filepath.Join(getRootDir(rootDir), analyzeSubdir, namespace)
    }
    
    func ClusterInfoPath(rootDir string) string {
    	return filepath.Join(getRootDir(rootDir), clusterInfoSubdir)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/bugreport/bugreport.go

    	if err != nil {
    		log.Error(err.Error())
    		return
    	}
    	common.LogAndPrintf("\nAnalysis Report:\n")
    	common.LogAndPrintf(out[common.StrNamespaceAll])
    	common.LogAndPrintf("\n")
    	writeFiles(archive.AnalyzePath(tempDir, common.StrNamespaceAll), out, config.DryRun)
    }
    
    func writeFiles(dir string, files map[string]string, dryRun bool) {
    	defer logRuntime(time.Now(), "Done writing files for dir %v", dir)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top