Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for manifest_failure (1.14 sec)

  1. pkg/wasm/monitoring.go

    package wasm
    
    import "istio.io/istio/pkg/monitoring"
    
    // Const strings for label value.
    const (
    	// For remote fetch metric.
    	fetchSuccess     = "success"
    	downloadFailure  = "download_failure"
    	manifestFailure  = "manifest_failure"
    	checksumMismatch = "checksum_mismatched"
    
    	// For Wasm conversion metric.
    	conversionSuccess   = "success"
    	noRemoteLoad        = "no_remote_load"
    	marshalFailure      = "marshal_failure"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/wasm/cache.go

    		fetcher := NewImageFetcher(ctx, imgFetcherOps)
    		binaryFetcher, dChecksum, err = fetcher.PrepareFetch(u.Host + u.Path)
    		if err != nil {
    			wasmRemoteFetchCount.With(resultTag.Value(manifestFailure)).Increment()
    			return nil, fmt.Errorf("could not fetch Wasm OCI image: %v", err)
    		}
    	default:
    		return nil, fmt.Errorf("unsupported Wasm module downloading URL scheme: %v", u.Scheme)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top