Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for VirtualServiceIneffectiveMatch (0.36 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.VirtualServiceIneffectiveMatch, "VirtualService none/tls-routing-almostmatch"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService none/tls-routing"},
    
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService non-method-get"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-single-match"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-two-matches"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/schema/validation.go

    		switch aae.Type {
    		case "VirtualServiceUnreachableRule":
    			return msg.NewVirtualServiceUnreachableRule(r, aae.Parameters[0].(string), aae.Parameters[1].(string))
    		case "VirtualServiceIneffectiveMatch":
    			return msg.NewVirtualServiceIneffectiveMatch(r, aae.Parameters[0].(string), aae.Parameters[1].(string), aae.Parameters[2].(string))
    		}
    	}
    	if !isError {
    		return msg.NewSchemaWarning(r, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 07:38:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	VirtualServiceUnreachableRule = diag.NewMessageType(diag.Warning, "IST0130", "VirtualService rule %v not used (%s).")
    
    	// VirtualServiceIneffectiveMatch defines a diag.MessageType for message "VirtualServiceIneffectiveMatch".
    	// Description: A VirtualService rule match duplicates a match in a previous rule.
    	VirtualServiceIneffectiveMatch = diag.NewMessageType(diag.Info, "IST0131", "VirtualService rule %v match %v is not used (duplicate/overlapping match in rule %v).")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

        template: "VirtualService rule %v not used (%s)."
        args:
          - name: ruleno
            type: string
          - name: reason
            type: "string"
    
      - name: "VirtualServiceIneffectiveMatch"
        code: IST0131
        level: Info
        description: "A VirtualService rule match duplicates a match in a previous rule."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    				Parameters: []any{ruleno, reason},
    			}))
    		}
    		warnIneffective := func(ruleno, matchno, dupno string) {
    			errs = AppendValidation(errs, WrapWarning(&AnalysisAwareError{
    				Type:       "VirtualServiceIneffectiveMatch",
    				Msg:        fmt.Sprintf("virtualService rule %v match %v is not used (duplicate/overlapping match in rule %v)", ruleno, matchno, dupno),
    				Parameters: []any{ruleno, matchno, dupno},
    			}))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top