mirror of https://github.com/linkerd/linkerd2.git
				
				
				
			
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
package cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
)
 | 
						|
 | 
						|
// newCmdDiagnostics creates a new cobra command `diagnostics` which contains commands to fetch Linkerd diagnostics
 | 
						|
func newCmdDiagnostics() *cobra.Command {
 | 
						|
 | 
						|
	diagnosticsCmd := &cobra.Command{
 | 
						|
		Use:     "diagnostics [flags]",
 | 
						|
		Aliases: []string{"dg"},
 | 
						|
		Args:    cobra.NoArgs,
 | 
						|
		Short:   "Commands used to diagnose Linkerd components",
 | 
						|
		Long: `Commands used to diagnose Linkerd components.
 | 
						|
 | 
						|
This command provides subcommands to diagnose the functionality of Linkerd.`,
 | 
						|
		Example: `  # Get control-plane component metrics
 | 
						|
  linkerd diagnostics controller-metrics
 | 
						|
 | 
						|
  # Get metrics from the web deployment in the emojivoto namespace.
 | 
						|
  linkerd diagnostics proxy-metrics -n emojivoto deploy/web
 | 
						|
 | 
						|
  # Get the endpoints for authorities in Linkerd's control-plane itself
 | 
						|
  linkerd diagnostics endpoints web.linkerd-viz.svc.cluster.local:8084
 | 
						|
  `,
 | 
						|
	}
 | 
						|
 | 
						|
	diagnosticsCmd.AddCommand(newCmdControllerMetrics())
 | 
						|
	diagnosticsCmd.AddCommand(newCmdEndpoints())
 | 
						|
	diagnosticsCmd.AddCommand(newCmdMetrics())
 | 
						|
	diagnosticsCmd.AddCommand(newCmdPolicy())
 | 
						|
	diagnosticsCmd.AddCommand(newCmdDiagnosticsProfile())
 | 
						|
 | 
						|
	return diagnosticsCmd
 | 
						|
}
 |