Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Zipkin (0.07 sec)

  1. istioctl/pkg/dashboard/dashboard.go

    }
    
    // port-forward to Istio System Zipkin; open browser
    func zipkinDashCmd(ctx cli.Context) *cobra.Command {
    	var opts clioptions.ControlPlaneOptions
    	cmd := &cobra.Command{
    		Use:   "zipkin",
    		Short: "Open Zipkin web UI",
    		Long:  `Open Istio's Zipkin dashboard`,
    		Example: `  istioctl dashboard zipkin
    
      # with short syntax
      istioctl dash zipkin
      istioctl d zipkin`,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. istioctl/pkg/dashboard/dashboard_test.go

    			ExpectedOutput: "Error: no pods found with selector app.kubernetes.io/name=prometheus\n",
    			WantException:  true,
    		},
    		{ // case 10
    			Args:           strings.Split("zipkin --browser=false", " "),
    			ExpectedOutput: "Error: no pods found with selector app=zipkin\n",
    			WantException:  true,
    		},
    		{ // case 11
    			Args:           strings.Split("envoy --selector app=example --browser=false", " "),
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Nov 21 01:17:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck_test.go

    			}
    		})
    	}
    }
    
    func Test_checkTracing(t *testing.T) {
    	cli := kube.NewFakeClient()
    	messages := diag.Messages{}
    
    	zipkinSvc := &corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "zipkin",
    			Namespace: "istio-system",
    		},
    	}
    	cli.Kube().CoreV1().Services("istio-system").Create(context.Background(), zipkinSvc, metav1.CreateOptions{})
    
    	err := checkTracing(cli, &messages)
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jul 09 12:01:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. istioctl/pkg/precheck/precheck.go

    }
    
    func checkTracing(cli kube.CLIClient, messages *diag.Messages) error {
    	// In 1.22, we remove the default tracing config which points to zipkin.istio-system
    	// This has no effect for users, unless they have this service.
    	svc, err := cli.Kube().CoreV1().Services("istio-system").Get(context.Background(), "zipkin", metav1.GetOptions{})
    	if err != nil && !kerrors.IsNotFound(err) {
    		return err
    	}
    	if err != nil {
    		// not found
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 02:31:32 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. istioctl/pkg/proxyconfig/proxyconfig.go

      istioctl proxy-config endpoint <pod-name[.namespace]> --address 172.17.0.2 -o json
    
      # Retrieve full endpoint with a cluster name (outbound|9411||zipkin.istio-system.svc.cluster.local).
      istioctl proxy-config endpoint <pod-name[.namespace]> --cluster "outbound|9411||zipkin.istio-system.svc.cluster.local" -o json
      # Retrieve full endpoint with the status (healthy).
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 15:53:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/adminlte.min.css.map

    I78pCI,wGAOQ,OAAA,IAAA,MAAA,QlI88pCZ,gGkIr9pCI,gGAaI,iBAAA,QACA,MAAA,QlI68pCR,+GACA,qHkI59pCI,+GAAA,qHAmBQ,iBAAA,QACA,MAAA,QlI88pCZ,6FkIl+pCI,6FA6BQ,aAAA,QlI08pCZ,kHkIv+pCI,kHAiCQ,iBAAA,QACA,aAAA,QACA,MAAA,QlI28pCZ,0HkI9+pCI,0HAuCQ,MAAA,kBlI48pCZ,gIkIn/pCI,gIA0CU,MAAA,QlI88pCd,gHkIx/pCI,gHAgDM,aAAA,QpD9DN,wGoDKM,aAAA,QpDLN,yGoDUI,aAAA,QlI4gqCR,oGACA,0GAFA,mGAFA,oGACA,0GkItgqCI,mGAOQ,OAAA,IAAA,MAAA,QlIugqCZ,2FkI9gqCI,2FAaI,iBAAA,QACA,MAAA,KlIsgqCR,0GACA,gHkIrhqCI,0GAAA,gHAmBQ,iBAAA,QACA,MAAA,KlIu...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
Back to top