Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dashboard (0.26 sec)

  1. istioctl/pkg/dashboard/dashboard.go

    		CommandLong:  `Open the admin dashboard for a proxy, like envoy and ztunnel pods`,
    		CommandExample: `  # Open envoy admin dashboard for the productpage-123-456.default pod
      istioctl dashboard proxy productpage-123-456.default
    
      # Open envoy admin dashboard for one pod under a deployment
      istioctl dashboard proxy deployment/productpage-v1
    
      # Open dashboard for the ztunnel-bwh89.istio-system pod
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  2. istioctl/pkg/dashboard/dashboard_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package dashboard
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    	"testing"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/util/testutil"
    )
    
    func TestDashboard(t *testing.T) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Nov 21 01:17:24 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  3. istioctl/cmd/root.go

    	experimentalCmd.AddCommand(ztunnelconfig.ZtunnelConfig(ctx))
    
    	analyzeCmd := analyze.Analyze(ctx)
    	hideInheritedFlags(analyzeCmd, cli.FlagIstioNamespace)
    	rootCmd.AddCommand(analyzeCmd)
    
    	dashboardCmd := dashboard.Dashboard(ctx)
    	hideInheritedFlags(dashboardCmd, cli.FlagNamespace, cli.FlagIstioNamespace)
    	rootCmd.AddCommand(dashboardCmd)
    
    	manifestCmd := mesh.ManifestCmd(ctx)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 11 20:51:30 GMT 2024
    - 10K bytes
    - Viewed (0)
  4. istioctl/pkg/metrics/metrics.go

    	"github.com/prometheus/common/model"
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/dashboard"
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	metricsOpts     clioptions.ControlPlaneOptions
    	metricsDuration time.Duration
    )
    
    const (
    	destWorkloadLabel          = "destination_workload"
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 8.4K bytes
    - Viewed (0)
Back to top